libtermkey: re-arrange build script

Put commands in termux_step_pre_configure, termux_step_make and
termux_step_make_install in a more logical way.
This commit is contained in:
Henrik Grimler 2021-11-08 21:21:53 +01:00
parent 2ab8f872d1
commit 52de3bfd6f
No known key found for this signature in database
GPG Key ID: B0076E490B71616B
1 changed files with 14 additions and 11 deletions

View File

@ -3,7 +3,7 @@ TERMUX_PKG_DESCRIPTION="Library for processing of keyboard entry for terminal-ba
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.22
TERMUX_PKG_REVISION=2
TERMUX_PKG_REVISION=3
TERMUX_PKG_SRCURL=http://www.leonerd.org.uk/code/libtermkey/libtermkey-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=6945bd3c4aaa83da83d80a045c5563da4edd7d0374c62c0d35aec09eb3014600
TERMUX_PKG_DEPENDS="libunibilium"
@ -11,20 +11,23 @@ TERMUX_PKG_BREAKS="libtermkey-dev"
TERMUX_PKG_REPLACES="libtermkey-dev"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
return
termux_step_pre_configure() {
CFLAGS+=" -std=c99 -DHAVE_UNIBILIUM=1"
}
termux_step_make_install() {
CFLAGS+=" -std=c99 -DHAVE_UNIBILIUM=1"
termux_step_make() {
$CC $CFLAGS $CPPFLAGS -c -fPIC termkey.c -o termkey.o
$CC $CFLAGS $CPPFLAGS -c -fPIC driver-csi.c -o driver-csi.o
$CC $CFLAGS $CPPFLAGS -c -fPIC driver-ti.c -o driver-ti.o
$CC -shared -fPIC $LDFLAGS -o $TERMUX_PREFIX/lib/libtermkey.so termkey.o driver-csi.o driver-ti.o -lunibilium
chmod u+w termkey.h
cp termkey.h $TERMUX_PREFIX/include/
LIBDIR=$TERMUX_PREFIX/lib INCDIR=$TERMUX_PREFIX/include VERSION=$TERMUX_PKG_VERSION sh termkey.pc.sh > \
$PKG_CONFIG_LIBDIR/termkey.pc
$CC -shared -fPIC $LDFLAGS -o libtermkey.so \
termkey.o driver-csi.o driver-ti.o -lunibilium
}
termux_step_make_install() {
install -Dm600 -t $TERMUX_PREFIX/lib libtermkey.so
chmod u+w termkey.h
install -Dm600 termkey.h $TERMUX_PREFIX/include/
LIBDIR=$TERMUX_PREFIX/lib INCDIR=$TERMUX_PREFIX/include VERSION=$TERMUX_PKG_VERSION sh termkey.pc.sh > \
$PKG_CONFIG_LIBDIR/termkey.pc
}