2019-12-21 19:14:18 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://gitlab.com/DavidGriffith/frotz
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_DESCRIPTION="Interpreter for Infocom and other Z-machine interactive fiction (IF) games"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
2017-03-01 22:12:43 +01:00
|
|
|
# frotz does not depend on dialog or curl, but the zgames script we bundle below in termux_step_make_install() do.
|
2019-12-21 19:14:18 +01:00
|
|
|
TERMUX_PKG_VERSION=2.50
|
|
|
|
TERMUX_PKG_SRCURL=https://gitlab.com/DavidGriffith/frotz/-/archive/${TERMUX_PKG_VERSION}/frotz-${TERMUX_PKG_VERSION}.tar.gz
|
|
|
|
TERMUX_PKG_SHA256=0352dfc458fb5cc7a932c568bd86aabdde943bee25ea0cce58c46f8c893f554f
|
2017-03-01 22:12:43 +01:00
|
|
|
TERMUX_PKG_DEPENDS="ncurses, dialog, curl"
|
2019-08-13 15:19:08 +02:00
|
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
2015-06-13 01:03:31 +02:00
|
|
|
|
2019-03-16 13:38:23 +01:00
|
|
|
termux_step_pre_configure () {
|
2019-12-21 19:14:18 +01:00
|
|
|
export CURSES_CFLAGS="-I$TERMUX_PREFIX/include"
|
|
|
|
export SYSCONFDIR="$TERMUX_PREFIX/include"
|
|
|
|
export SOUND_TYPE="none"
|
2019-03-16 13:38:23 +01:00
|
|
|
}
|
|
|
|
|
2019-12-21 19:14:18 +01:00
|
|
|
termux_step_post_make_install () {
|
|
|
|
install -m755 $TERMUX_PKG_BUILDER_DIR/zgames $TERMUX_PREFIX/bin/zgames
|
2015-06-13 01:03:31 +02:00
|
|
|
}
|