Skip to content

Commit

Permalink
A script to automate building of the debian package
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@5291 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Apr 16, 2006
1 parent 9bffb8a commit 070846f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions build_debian_package.sh
@@ -0,0 +1,24 @@
#!/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 +%d%M%Y`
fakeroot dpkg-buildpackage

0 comments on commit 070846f

Please sign in to comment.