b5fc10fdc31aa2c26181bbe8f2b184a88add92c5
[termux-packages] / packages / ndk-stl / build.sh
1 TERMUX_PKG_HOMEPAGE=https://developer.android.com/tools/sdk/ndk/index.html
2 TERMUX_PKG_DESCRIPTION="Header files from the Android NDK needed for compiling C++ programs using STL"
3 TERMUX_PKG_VERSION=$TERMUX_NDK_VERSION
4 TERMUX_PKG_DEPENDS="libgnustl"
5 TERMUX_PKG_NO_DEVELSPLIT=yes
6
7 termux_step_extract_into_massagedir () {
8 mkdir -p $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/
9 cp -Rf $TERMUX_STANDALONE_TOOLCHAIN/include/c++/4.9.x/* $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/
10
11 if [ $TERMUX_ARCH = arm ]; then
12 cp $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/arm-linux-androideabi/armv7-a/bits/* \
13 $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/bits
14 else
15 cp $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/$TERMUX_ARCH-linux-android/bits/* \
16 $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/bits
17 fi
18 # fenv.h is a C++ compatibility header which should be included with the compiler
19 rm -Rf $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/{arm-linux-androideabi,tr1,tr2,fenv.h,complex.h}
20 }
21
22 termux_step_massage () {
23 echo "overriding termux_step_massage to avoid removing header files"
24 }