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

36 lines
1.3 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/termux/libandroid-support
TERMUX_PKG_DESCRIPTION="Library extending the Android C library (Bionic) for additional multibyte, locale and math support"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_VERSION=(26
1)
TERMUX_PKG_SRCURL=(https://github.com/termux/libandroid-support/archive/v${TERMUX_PKG_VERSION[0]}.tar.gz
https://github.com/termux/wcwidth/archive/v${TERMUX_PKG_VERSION[1]}.tar.gz)
TERMUX_PKG_SHA256=(ae2a62547f027624aec8442a0cb724b41de5f60d56d52634f605c566a34cde9b
088e31ad4d3aa47fd81fe02f0a484338b9708199d59865f1ab44b46f868d5a45)
TERMUX_PKG_PRE_DEPENDS="dpkg (>= 1.19.4-3)"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_ESSENTIAL=true
termux_step_post_extract_package() {
cp wcwidth-${TERMUX_PKG_VERSION[1]}/wcwidth.c src/
}
termux_step_make() {
local c_file
mkdir objects
for c_file in $(find src -type f -iname \*.c); do
$CC $CPPFLAGS $CFLAGS -std=c99 -DNULL=0 -fPIC -Iinclude \
-c $c_file -o ./objects/$(basename "$c_file").o
done
cd objects
ar rcu ../libandroid-support.a *.o
$CC $LDFLAGS -shared -o ../libandroid-support.so *.o
}
termux_step_make_install() {
install -Dm600 libandroid-support.a $TERMUX_PREFIX/lib/libandroid-support.a
install -Dm600 libandroid-support.so $TERMUX_PREFIX/lib/libandroid-support.so
}