Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
A script to automate building of the debian package
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5291 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Apr 16, 2006
1 parent 5c641d2 commit 8334b27
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 8334b27

Please sign in to comment.