Skip to content

Commit 8334b27

Browse files
author
timlinux
committed
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
1 parent 5c641d2 commit 8334b27

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

build_debian_package.sh

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
set -x
3+
if [ -d `pwd`/src ]
4+
then
5+
#src exists so we are prolly in the right dir
6+
echo "good we are in qgis checkout dir!"
7+
else
8+
echo "You must run this from the top level qgis checkout dir!"
9+
exit 1
10+
fi
11+
12+
if [ -d `pwd`/debian ]
13+
then
14+
cd debian
15+
svn update
16+
cd ..
17+
else
18+
svn co https://svn.qgis.org/repos/qgis/trunk/debian
19+
fi
20+
21+
export DEBFULLNAME="Tim Sutton"
22+
export DEBEMAIL=tim@linfiniti.com
23+
dch -v 0.7.9+svn`date +%d%M%Y`
24+
fakeroot dpkg-buildpackage

0 commit comments

Comments
 (0)