30 lines
950 B
Bash
30 lines
950 B
Bash
TERMUX_PKG_HOMEPAGE=http://www.eblong.com/zarf/glulx/
|
|
TERMUX_PKG_DESCRIPTION="Interpreter for the Glulx portable VM for interactive fiction (IF) games"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_VERSION=0.5.4
|
|
TERMUX_PKG_SRCURL=http://www.eblong.com/zarf/glulx/glulxe-051.tar.gz
|
|
TERMUX_PKG_SHA256=33c563bdbd0fdbae625e1a2441e9a6f40f1491f1cdc2a197bbd6cf2c32c3830d
|
|
TERMUX_PKG_BUILD_IN_SRC="yes"
|
|
TERMUX_PKG_DEPENDS="ncurses"
|
|
|
|
termux_step_configure() {
|
|
termux_download http://eblong.com/zarf/glk/glktermw-104.tar.gz \
|
|
$TERMUX_PKG_CACHEDIR/glktermw-104.tar.gz \
|
|
5968630b45e2fd53de48424559e3579db0537c460f4dc2631f258e1c116eb4ea
|
|
tar xf $TERMUX_PKG_CACHEDIR/glktermw-104.tar.gz
|
|
}
|
|
|
|
termux_step_make() {
|
|
cd $TERMUX_PKG_SRCDIR/glkterm
|
|
patch -p1 < $TERMUX_PKG_BUILDER_DIR/glkterm.patch.special
|
|
CC="$CC $CFLAGS $CPPFLAGS $LDFLAGS" PREFIX=$TERMUX_PREFIX make -j 1
|
|
|
|
cd ..
|
|
make
|
|
cp glulxe $TERMUX_PREFIX/bin
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
echo "Do nothing..."
|
|
}
|