0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-04 18:45:52 +00:00
2024-06-23 00:39:25 +01:00

38 lines
1.4 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, MIT"
TERMUX_PKG_VERSION=(29
4)
TERMUX_PKG_LICENSE_FILE="LICENSE.txt, wcwidth-${TERMUX_PKG_VERSION[1]}/LICENSE.txt"
TERMUX_PKG_MAINTAINER="@termux"
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=(8f74ce0f9cf70ec29f548696c248cac0ba560a2d8916a0fe1cf9316d5f167a80
08489e00f797ffb3b71f9c1894c83e5ebe12c90a2ee0e1f9dc7c6eb29a2ff1a8)
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_ESSENTIAL=true
TERMUX_PKG_AUTO_UPDATE=false
termux_step_post_get_source() {
cp wcwidth-${TERMUX_PKG_VERSION[1]}/wcwidth.c src/
}
termux_step_make() {
local c_file
mkdir -p 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
}