1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-14 04:06:40 +00:00

tome2: Bump to 2022.12.27

This commit is contained in:
Tee KOBAYASHI 2023-01-11 18:09:47 +09:00 committed by xtkoba
parent 5391235be3
commit db18db3c9a

View File

@ -1,24 +1,23 @@
TERMUX_PKG_HOMEPAGE=https://github.com/tome2/tome2
TERMUX_PKG_DESCRIPTION="An open world roguelike adventure set in middle earth"
TERMUX_PKG_LICENSE="custom"
TERMUX_PKG_LICENSE="non-free"
TERMUX_PKG_MAINTAINER="@termux"
_COMMIT=1e26568b084104edd2a696e86118a3e71c78d61e
TERMUX_PKG_VERSION=2022.12.27
TERMUX_PKG_SRCURL=git+https://github.com/tome2/tome2
TERMUX_PKG_VERSION=2022.02.24
TERMUX_PKG_REVISION=1
TERMUX_PKG_GIT_BRANCH=master
_COMMIT=d25bdae09bffea46ac54e51b99b2c166d9be7db8
TERMUX_PKG_DEPENDS="libc++, ncurses, boost"
TERMUX_PKG_DEPENDS="boost, libc++, libx11, ncurses"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="-DSYSTEM_INSTALL=YES"
termux_step_post_get_source() {
git fetch --unshallow || true
git fetch --unshallow
git checkout $_COMMIT
local version="$(git rev-parse HEAD)"
if [ "$version" != "$_COMMIT" ]; then
echo -n "ERROR: Failed to check out the specified version; \"$_COMMIT\""
echo " differs from the current HEAD: \"$version\""
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
}