Setup libstdc++.so -> libgnustl_shared.so early
[termux-packages] / packages / libgnustl / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=http://gcc.gnu.org/onlinedocs/libstdc++/
2TERMUX_PKG_DESCRIPTION="The GNU Standard C++ Library (a.k.a. libstdc++-v3), necessary on android since the system libstdc++.so is stripped down"
3TERMUX_PKG_VERSION=$TERMUX_NDK_VERSION
9fa59b1c 4TERMUX_PKG_BUILD_REVISION=4
3f300a10
FF
5# Since every C++ package links against this by default (due
6# to the libstdc++.so -> libgnustl_shared.so setup in
7# build-package.sh) this package is considered essential,
8# and other packages does not need to declare explicit
9# dependency on it.
10TERMUX_PKG_ESSENTIAL=yes
59f0d218 11
4c96d3fb 12termux_step_make_install () {
3f300a10
FF
13 # Just bump timestamp to have it packaged.
14 touch $TERMUX_PREFIX/lib/libgnustl_shared.so
344b88f9 15}