From 193f026d86b9f96a895bb6adb7d3f7ce4b94b83a Mon Sep 17 00:00:00 2001 From: Tee KOBAYASHI Date: Thu, 20 Jan 2022 16:00:26 +0900 Subject: [PATCH] new package: 2048-c --- packages/2048-c/build.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 packages/2048-c/build.sh diff --git a/packages/2048-c/build.sh b/packages/2048-c/build.sh new file mode 100644 index 000000000..65175a7f0 --- /dev/null +++ b/packages/2048-c/build.sh @@ -0,0 +1,21 @@ +TERMUX_PKG_HOMEPAGE=https://github.com/mevdschee/2048.c +TERMUX_PKG_DESCRIPTION="Console version of the game \"2048\" for GNU/Linux" +TERMUX_PKG_LICENSE="MIT" +_COMMIT=bdb7527db2c4b5ce5eb8b8067ed9c0330ead77ea +TERMUX_PKG_MAINTAINER="@termux" +TERMUX_PKG_VERSION=2021.04.22 +TERMUX_PKG_SRCURL=https://github.com/mevdschee/2048.c.git +TERMUX_PKG_GIT_BRANCH=main +TERMUX_PKG_BUILD_IN_SRC=true + +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 +}