2015-06-13 01:03:31 +02:00
|
|
|
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
|
2016-05-19 00:49:08 +02:00
|
|
|
TERMUX_PKG_BUILD_REVISION=4
|
2016-08-11 01:45:41 +02:00
|
|
|
# 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
|
2015-06-13 01:03:31 +02:00
|
|
|
|
2016-04-29 13:46:31 +02:00
|
|
|
termux_step_make_install () {
|
2016-08-11 01:45:41 +02:00
|
|
|
# Just bump timestamp to have it packaged.
|
|
|
|
touch $TERMUX_PREFIX/lib/libgnustl_shared.so
|
2016-05-18 22:21:39 +02:00
|
|
|
}
|