mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-11 23:00:52 +00:00
36 lines
1.3 KiB
Bash
36 lines
1.3 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/tome2/tome2
|
|
TERMUX_PKG_DESCRIPTION="An open world roguelike adventure set in middle earth"
|
|
TERMUX_PKG_LICENSE="non-free"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
_COMMIT=1e26568b084104edd2a696e86118a3e71c78d61e
|
|
TERMUX_PKG_VERSION=2022.12.27
|
|
TERMUX_PKG_REVISION=3
|
|
TERMUX_PKG_SRCURL=git+https://github.com/tome2/tome2
|
|
TERMUX_PKG_SHA256=e18ab63c74f8650b8348cbc82af923e44a42f2d4a2621f993ee7e789f461a61a
|
|
TERMUX_PKG_GIT_BRANCH=master
|
|
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
|
|
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_install_license() {
|
|
install -Dm600 $TERMUX_PKG_BUILDER_DIR/LICENSE \
|
|
$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME/LICENSE
|
|
}
|