Skip to content

Commit c26c208

Browse files
author
timlinux
committedDec 30, 2005
Added a simple little bash script to build qgis
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@4411 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent fdddfc3 commit c26c208

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
 

‎build.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
#
3+
# A simple script to build QGIS
4+
# Tim Sutton 2005
5+
#
6+
if [ ! $1 ]
7+
then
8+
echo "Usage: ${0} install_prefix"
9+
echo "e.g."
10+
echo "${0} \$HOME/apps/"
11+
exit 1
12+
fi
13+
export QTDIR=/usr/local/Trolltech/Qt-4.1.0/
14+
export PATH=$QTDIR/bin:$PATH
15+
export LD_LIBRARY_PATH=$QTDIR/lib
16+
./autogen.sh --enable-debug --prefix=${1} --with-qtdir=$QTDIR --with-grass=/usr/lib/grass && make && sudo make install

0 commit comments

Comments
 (0)