2022-01-20 08:00:26 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://github.com/mevdschee/2048.c
|
2022-02-03 09:56:17 +01:00
|
|
|
TERMUX_PKG_DESCRIPTION="Console version of the game '2048' for GNU/Linux"
|
2022-01-20 08:00:26 +01:00
|
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
|
|
_COMMIT=bdb7527db2c4b5ce5eb8b8067ed9c0330ead77ea
|
|
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
|
|
TERMUX_PKG_VERSION=2021.04.22
|
2022-02-03 09:56:17 +01:00
|
|
|
TERMUX_PKG_REVISION=1
|
2022-01-20 08:00:26 +01:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/mevdschee/2048.c.git
|
|
|
|
TERMUX_PKG_GIT_BRANCH=main
|
|
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
2022-01-20 10:08:38 +01:00
|
|
|
TERMUX_PKG_GROUPS="games"
|
2022-01-20 08:00:26 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|