summaryrefslogtreecommitdiff
path: root/data/boost_/make.sh
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-03-30 08:48:20 +0000
committerJay Freeman <saurik@saurik.com>2008-03-30 08:48:20 +0000
commit6a504236d38b5c41fd7b2b0811a3a77fdcd9281f (patch)
treeb80be746bb426076cb3f1b8a46e998518ec6d4cc /data/boost_/make.sh
parent083104aa46e49a5f331bb90506f58b5bb7dd828c (diff)
Removing now broken Boost build from distribution.
git-svn-id: http://svn.telesphoreo.org/trunk@195 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/boost_/make.sh')
-rw-r--r--data/boost_/make.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/data/boost_/make.sh b/data/boost_/make.sh
new file mode 100644
index 000000000..b3ebe3312
--- /dev/null
+++ b/data/boost_/make.sh
@@ -0,0 +1,14 @@
+shopt -s extglob
+pkg:extract
+cd *
+pkg:patch
+./configure --prefix=/usr --without-icu --without-libraries=python
+echo 'using darwin ;' >user-config.jam
+make
+make install PREFIX="${PKG_DEST}/usr"
+rm -f "${PKG_DEST}"/usr/lib/*-d?(-+([0-9_])).@(a|dylib)
+for na in "${PKG_DEST}"/usr/lib/*-+([0-9_]).a; do
+ a=${na/-+([0-9_]).a/.a}
+ rm -f "$a"
+ ln -s "$(basename "$na")" "$a"
+done