X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/344b88f958c0b579c5c858f909c757bd927bf63e..af4dc416ed4471e533783491e720d5695f91f447:/packages/libgnustl/build.sh diff --git a/packages/libgnustl/build.sh b/packages/libgnustl/build.sh index 61cab4da..0568a792 100644 --- a/packages/libgnustl/build.sh +++ b/packages/libgnustl/build.sh @@ -1,22 +1,15 @@ TERMUX_PKG_HOMEPAGE=http://gcc.gnu.org/onlinedocs/libstdc++/ TERMUX_PKG_DESCRIPTION="The GNU Standard C++ Library (a.k.a. libstdc++-v3), necessary on android since the system libstdc++.so is stripped down" TERMUX_PKG_VERSION=$TERMUX_NDK_VERSION -TERMUX_PKG_BUILD_REVISION=3 +TERMUX_PKG_REVISION=4 +# Since every C++ package links against this by default (due +# to the libstdc++.so -> libgnustl_shared.so setup in +# build-package.sh) this package is considered essential, +# and other packages does not need to declare explicit +# dependency on it. +TERMUX_PKG_ESSENTIAL=yes termux_step_make_install () { - local LIBFILE=$TERMUX_STANDALONE_TOOLCHAIN/${TERMUX_HOST_PLATFORM}/lib/libgnustl_shared.so - if [ $TERMUX_ARCH = arm ]; then - LIBFILE=$TERMUX_STANDALONE_TOOLCHAIN/${TERMUX_HOST_PLATFORM}/lib/armv7-a/hard/libgnustl_shared.so - fi - - cp $LIBFILE $TERMUX_PREFIX/lib/ -} - -termux_step_post_massage () { - # Setup a libgnustl_shared.so in $PREFIX/lib, so that other C++ using packages - # links to it. We do however want to avoid installing this, to avoid problems - # where e.g. libm.so on some i686 devices links against libstdc++.so, so do - # this here in termux_step_post_massage. - cd $TERMUX_PREFIX/lib - ln -s libgnustl_shared.so libstdc++.so + # Just bump timestamp to have it packaged. + touch $TERMUX_PREFIX/lib/libgnustl_shared.so }