new package: libt3window

This commit is contained in:
Tee KOBAYASHI 2022-02-02 10:55:48 +09:00 committed by xtkoba
parent 191a0897a3
commit 460f0370c7
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
TERMUX_PKG_HOMEPAGE=https://os.ghalkes.nl/t3/libt3window.html
TERMUX_PKG_DESCRIPTION="A library providing a windowing abstraction on terminals"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.4.1
TERMUX_PKG_SRCURL=https://os.ghalkes.nl/dist/libt3window-${TERMUX_PKG_VERSION}.tar.bz2
TERMUX_PKG_SHA256=4c14d3f4f946637fd6c3fa23ef7511fa505880946e151406d5e16f645d24e792
TERMUX_PKG_DEPENDS="libtranscript, libunistring, ncurses"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--without-gettext"
termux_step_post_get_source() {
sed -i 's/ -s / /g' Makefile.in
}
termux_step_pre_configure() {
local libtooldir=$TERMUX_PKG_TMPDIR/_libtool
mkdir -p $libtooldir
pushd $libtooldir
cat > configure.ac <<-EOF
AC_INIT
LT_INIT
AC_OUTPUT
EOF
touch install-sh
cp "$TERMUX_SCRIPTDIR/scripts/config.sub" ./
cp "$TERMUX_SCRIPTDIR/scripts/config.guess" ./
autoreconf -fi
./configure --host=$TERMUX_HOST_PLATFORM
popd
export LIBTOOL=$libtooldir/libtool
CFLAGS+=" $CPPFLAGS"
}