new package: 2048-c
This commit is contained in:
parent
f33e9c9743
commit
193f026d86
21
packages/2048-c/build.sh
Normal file
21
packages/2048-c/build.sh
Normal file
@ -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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user