0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-15 18:13:11 +00:00
Files
termux-packages/packages/ratt/build.sh
Kevin WIlliams 208292b931 *: Rebuild with Go 1.21.0/1.20.7 (5)
Signed-off-by: Kevin WIlliams <admin@utermux.dev>
2023-08-12 18:22:43 +08:00

37 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://git.sr.ht/~ghost08/ratt
TERMUX_PKG_DESCRIPTION="A tool for converting websites to rss/atom feeds"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
_COMMIT=ed1a675685b9d86d6602e168199ba9b4260f5f06
TERMUX_PKG_VERSION=2023.02.02
TERMUX_PKG_REVISION=2
TERMUX_PKG_SRCURL=git+https://git.sr.ht/~ghost08/ratt
TERMUX_PKG_SHA256=cc9f7f63e18db9b1850f2de5a5309072c09735a551dda8363b6026cd8adfba50
TERMUX_PKG_GIT_BRANCH=master
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_MAKE_ARGS="PREFIX=$TERMUX_PREFIX"
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_pre_configure() {
termux_setup_golang
go mod init || :
go mod tidy
}