Boost libs (#974)
authorits-pointless <its-pointless@users.noreply.github.com>
Wed, 3 May 2017 22:00:01 +0000 (08:00 +1000)
committerFredrik Fornwall <fredrik@fornwall.net>
Wed, 3 May 2017 22:00:01 +0000 (00:00 +0200)
* Boost libs

* boost.python build fix from Vishal

* set -std=c++11 so libicu works

packages/boost/build.sh [new file with mode: 0644]
packages/boost/python.jam.patch [new file with mode: 0644]

diff --git a/packages/boost/build.sh b/packages/boost/build.sh
new file mode 100644 (file)
index 0000000..33521b6
--- /dev/null
@@ -0,0 +1,35 @@
+TERMUX_PKG_HOMEPAGE=https://boost.org
+TERMUX_PKG_DESCRIPTION="cpp libs"
+TERMUX_PKG_VERSION=1.64.0
+TERMUX_PKG_SRCURL=http://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2
+TERMUX_PKG_SHA256=7bcc5caace97baa948931d712ea5f37038dbb1c5d89b43ad4def4ed7cb683332
+TERMUX_PKG_FOLDERNAME="boost_1_64_0"
+TERMUX_PKG_BUILD_IN_SRC=yes
+TERMUX_PKG_DEPENDS="libbz2, libicu"
+termux_step_configure(){
+       return 0;
+}
+termux_step_make() {
+       return 0;
+}
+termux_step_make_install() {
+       CXXFLAGS+="  -std=c++11"
+       rm $TERMUX_PREFIX/lib/libboost* -f
+       rm $TERMUX_PREFIX/include/boost -rf
+       ./bootstrap.sh
+       echo "using clang : $TERMUX_ARCH : $CXX : <linkflags>-L/data/data/com.termux/files/usr/lib ; " >> project-config.jam
+       ./b2  target-os=android -j${TERMUX_MAKE_PROCESSES} \
+               include=/data/data/com.termux/files/usr/include \
+               include=/data/data/com.termux/files/usr/include/python2.7 \
+               toolset=clang-$TERMUX_ARCH \
+               --prefix="$TERMUX_PREFIX"  \
+               -q \
+               --without-coroutine2 \
+               --without-coroutine \
+               --without-context \
+               --without-log \
+               cxxflags="$CXXFLAGS" \
+               link=shared \
+               threading=multi \
+               install
+}
diff --git a/packages/boost/python.jam.patch b/packages/boost/python.jam.patch
new file mode 100644 (file)
index 0000000..5ac86c4
--- /dev/null
@@ -0,0 +1,11 @@
+--- ../cache/boost_1_64_0/tools/build/src/tools/python.jam     2017-04-17 02:22:26.000000000 +0000
++++ ./tools/build/src/tools/python.jam 2017-04-30 06:12:15.748537322 +0000
+@@ -651,7 +651,7 @@
+         case aix : return  <library>pthread <library>dl ;
+-        case * : return  <library>pthread <library>dl
++        case * : return  <library>dl
+             <toolset>gcc:<library>util <toolset-intel:platform>linux:<library>util ;
+     }
+ }