We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 950cb17 commit b5d9170Copy full SHA for b5d9170
build.sh
@@ -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