QGIS/scripts/build_debian_package.sh
timlinux 466a4a15a5 Tidy up cmake stuff so all .in files now live under cmake_templates
Move more utility scripts into scripts dir



git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7097 c8812cc2-4d05-0410-92ff-de0c093fc19c
2007-07-25 21:28:00 +00:00

25 lines
467 B
Bash
Executable File

#!/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
dch -v 0.7.9+svn`date +%Y%m%d`
fakeroot dpkg-buildpackage