2006-04-16 21:16:53 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
if [ -d `pwd`/src ]
|
|
|
|
then
|
|
|
|
#src exists so we are prolly in the right dir
|
|
|
|
echo "good we are in qgis checkout dir!"
|
|
|
|
else
|
|
|
|
echo "You must run this from the top level qgis checkout dir!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d `pwd`/debian ]
|
|
|
|
then
|
|
|
|
cd debian
|
|
|
|
svn update
|
|
|
|
cd ..
|
|
|
|
else
|
|
|
|
svn co https://svn.qgis.org/repos/qgis/trunk/debian
|
|
|
|
fi
|
|
|
|
|
|
|
|
export DEBFULLNAME="Tim Sutton"
|
|
|
|
export DEBEMAIL=tim@linfiniti.com
|
2008-01-29 01:07:58 +00:00
|
|
|
#dch -v 0.9.1+svn`date +%Y%m%d`
|
|
|
|
dch -v 0.9.2rc1
|
2006-04-16 21:16:53 +00:00
|
|
|
fakeroot dpkg-buildpackage
|