mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8411 c8812cc2-4d05-0410-92ff-de0c093fc19c
26 lines
504 B
Bash
Executable File
26 lines
504 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.9.1+svn`date +%Y%m%d`
|
|
dch -v 0.9.2rc1
|
|
fakeroot dpkg-buildpackage -kAA4D3BA997626237
|