termux-packages/packages/libandroid-support/build.sh

26 lines
960 B
Bash
Raw Normal View History

TERMUX_PKG_HOMEPAGE=https://github.com/termux/libandroid-support
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DESCRIPTION="Library extending the Android C library (Bionic) for additional multibyte, locale and math support"
2019-01-21 13:53:58 +01:00
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_VERSION=24
TERMUX_PKG_SHA256=e14e262429a60bea733d5bed69d2f3a1cada53fcadaf76787fca5c8b0d4dae2f
TERMUX_PKG_SRCURL=https://github.com/termux/libandroid-support/archive/v${TERMUX_PKG_VERSION}.tar.gz
2015-06-13 01:03:31 +02:00
TERMUX_PKG_BUILD_IN_SRC=yes
TERMUX_PKG_ESSENTIAL=yes
termux_step_make_install () {
# Remove files previously in package to avoid them being left
# in build environments.
rm -f $TERMUX_PREFIX/include/langinfo.h $TERMUX_PREFIX/include/iconv.h
_C_FILES="src/musl-*/*.c"
$CC $CFLAGS -std=c99 -DNULL=0 $CPPFLAGS $LDFLAGS \
-Iinclude \
2015-06-25 12:36:03 +02:00
$_C_FILES \
2017-03-05 11:49:49 +01:00
-shared -fpic \
-o $TERMUX_PREFIX/lib/libandroid-support.so
2015-06-13 01:03:31 +02:00
ln -sf libandroid-support.so $TERMUX_PREFIX/lib/libiconv.so
2015-06-13 01:03:31 +02:00
rm -Rf $TERMUX_PREFIX/include/libandroid-support/
2015-06-13 01:03:31 +02:00
}