summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/build
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/build') (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/net/wellenreiter/build28
1 files changed, 28 insertions, 0 deletions
diff --git a/noncore/net/wellenreiter/build b/noncore/net/wellenreiter/build
new file mode 100755
index 0000000..44eb8d8
--- a/dev/null
+++ b/noncore/net/wellenreiter/build
@@ -0,0 +1,28 @@
1##########################################
2# Wellenreiter X11 standalone build script #
3##########################################
4
5PREFIX=/usr/local
6
7# ------------------- do not change anything below
8
9if [ -z $QTDIR ]
10then
11 echo "*** ERROR: QTDIR is not set. QTDIR must point to your Qt directory, e.g. /usr/lib/qt3"
12 exit
13fi
14
15export QMAKESPEC=$QTDIR/mkspecs/linux-g++
16export OPIEDIR=$PWD
17export PATH=$QTDIR/bin:$PATH
18qmake "platform=x11" wellenreiter.pro
19
20
21case "$1" in
22compile) make;;
23install) cp -dfR output/* $PREFIX/;;
24*) echo "Usage: ./build [compile|install]"; exit;;
25esac
26
27
28