new package: robotfindskitten

This commit is contained in:
Tee KOBAYASHI 2022-02-06 11:57:02 +09:00 committed by xtkoba
parent 7550bc427f
commit 72c1f22351
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
TERMUX_PKG_HOMEPAGE=https://github.com/noncombatant/robotfindskitten
TERMUX_PKG_DESCRIPTION="A very fun adventure game for robots and humans"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
_COMMIT=42a5cb783a59bf34dc0d1e925fd615f022674721
TERMUX_PKG_VERSION=2021.08.18
TERMUX_PKG_SRCURL=https://github.com/noncombatant/robotfindskitten.git
TERMUX_PKG_GIT_BRANCH=master
TERMUX_PKG_DEPENDS="ncurses"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_MAKE_ARGS="-e"
TERMUX_PKG_GROUPS="games"
termux_step_post_get_source() {
git fetch --unshallow
git checkout $_COMMIT
local version="$(git log -1 --format=%cs | sed 's/-/./g')"
if [ "$version" != "$TERMUX_PKG_VERSION" ]; then
echo -n "ERROR: The specified version \"$TERMUX_PKG_VERSION\""
echo " is different from what is expected to be: \"$version\""
return 1
fi
}
termux_step_pre_configure() {
LDFLAGS+=" -lncursesw"
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin robotfindskitten
}