forked from opencv/opencv
-
Notifications
You must be signed in to change notification settings - Fork 11
Package
Jesús Arroyo Torrens edited this page May 17, 2016
·
14 revisions
git clone https://github.com/bqlabs/opencv.git
cd opencv
export VERSION=2.4.9.1.3
git checkout master
tar -czf ../opencv_${VERSION}.orig.tar.gz --exclude='.git*' .
git checkout debian
Edit debian/changelog with trusty:
sed -i "s/opencv (${VERSION}) unstable/opencv (${VERSION}-trusty1) trusty/;" debian/changelog
debuild -S -sa
export RELEASES="vivid wily xenial";
for RELEASE in $RELEASES;
do
git checkout -- debian/changelog;
sed -i "s/opencv (${VERSION}) unstable/opencv (${VERSION}-${RELEASE}1) ${RELEASE}/;" debian/changelog;
debuild -S -sd;
done
export RELEASES="trusty vivid wily xenial";
for RELEASE in $RELEASES;
do
dput -f ppa:bqlabs/horus-dev ../opencv_${VERSION}-${RELEASE}1_source.changes;
done