summaryrefslogtreecommitdiff
path: root/build/fink.sh
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-10-13 02:33:04 +0300
committerAndrei Karas <akaras@inbox.ru>2011-10-13 04:00:29 +0300
commitd203be43c9e1006672a1a1da6b177fd43f4760c2 (patch)
tree5a8aa84610405c3b54dff8d38edfa15d08603269 /build/fink.sh
parentd2c132d50f618e8b533cb69d39e3e76d5439def9 (diff)
downloadmv-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.gz
mv-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.bz2
mv-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.xz
mv-d203be43c9e1006672a1a1da6b177fd43f4760c2.zip
Move build scripts and logs to build dir.
Diffstat (limited to 'build/fink.sh')
-rwxr-xr-xbuild/fink.sh36
1 files changed, 36 insertions, 0 deletions
diff --git a/build/fink.sh b/build/fink.sh
new file mode 100755
index 000000000..8c74de65a
--- /dev/null
+++ b/build/fink.sh
@@ -0,0 +1,36 @@
+#!/bin/bash
+
+cd ..
+
+FINKDIR=/sw
+GCCVER=4.0
+
+. ${FINKDIR}/bin/init.sh
+export CC=gcc-${GCCVER}
+export CXX=g++-${GCCVER}
+export CPP=cpp-${GCCVER}
+export CXXCPP=cpp-${GCCVER}
+export CPPFLAGS="-I/sw/include"
+export LDFLAGS="-framework OpenGL"
+dir=`pwd`/run
+#dir=${FINKDIR}
+
+autoreconf -i 2>build/fink1.log
+
+# with prefix
+#./configure --enable-applebuild=yes \
+#--prefix=${dir} \
+#--datadir=${dir}/share/games \
+#--bindir=${dir}/bin \
+#--mandir=${dir}/share/man 2>fink2.log 1>fink2_ok.log
+
+# without prefix
+./configure --enable-applebuild=yes \
+--datarootdir=${dir}/share/games \
+--bindir=${dir}/bin \
+--sbindir=${dir}/bin \
+--mandir=${dir}/share/man 2>build/fink2.log
+
+# simple
+#./configure --enable-applebuild=yes 2>fink2.log 1>fink2_ok.log
+make 2>build/fink3.log