termux-packages/packages/screen/build.sh

26 lines
825 B
Bash
Raw Normal View History

2016-11-08 00:08:31 +01:00
TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/screen/
2015-07-30 16:52:56 +02:00
TERMUX_PKG_DESCRIPTION="Terminal multiplexer with VT100/ANSI terminal emulation"
2019-01-21 13:53:58 +01:00
TERMUX_PKG_LICENSE="GPL-2.0"
2019-10-06 00:47:07 +02:00
TERMUX_PKG_VERSION=4.7.0
TERMUX_PKG_REVISION=1
2016-11-08 00:08:31 +01:00
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/screen/screen-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=da775328fa783bd2a787d722014dbd99c6093effc11f337827604c2efc5d20c1
TERMUX_PKG_DEPENDS="ncurses, libcrypt"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
--disable-socket-dir
--enable-colors256
--with-ssl=openssl
"
2016-11-08 00:08:31 +01:00
termux_step_pre_configure() {
2016-11-08 00:08:31 +01:00
# Run autoreconf since we have patched configure.ac
autoconf
CFLAGS+=" -DGETUTENT"
export LIBS="-lcrypt -llog"
}
termux_step_post_configure() {
echo '#define HAVE_SVR4_PTYS 1' >> $TERMUX_PKG_BUILDDIR/config.h
echo 'mousetrack on' > "$TERMUX_PREFIX/etc/screenrc"
2016-11-08 00:08:31 +01:00
}