mirror of
https://github.com/termux/termux-packages.git
synced 2025-08-08 00:22:15 +00:00
This is needed to avoid auto-updater script warnings. Updating requires manual sha256 computing, auto updater can not do that.
40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
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=58155f8d3459e30ad393e2d7c23ad0c8eeb96df2
|
|
TERMUX_PKG_VERSION=2022.05.21
|
|
TERMUX_PKG_SRCURL=git+https://github.com/noncombatant/robotfindskitten
|
|
TERMUX_PKG_SHA256=58d9403ba1d3303b68a8fe82357d2c5ca69bf45c032670bf9b28d8c4a149496d
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_GIT_BRANCH=main
|
|
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
|
|
|
|
local s=$(find . -type f ! -path '*/.git/*' -print0 | xargs -0 sha256sum | LC_ALL=C sort | sha256sum)
|
|
if [[ "${s}" != "${TERMUX_PKG_SHA256} "* ]]; then
|
|
termux_error_exit "Checksum mismatch for source files."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -lncursesw"
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin robotfindskitten
|
|
}
|