diff --git a/packages/photon-rss/build.sh b/packages/photon-rss/build.sh new file mode 100644 index 000000000..bbec89884 --- /dev/null +++ b/packages/photon-rss/build.sh @@ -0,0 +1,35 @@ +TERMUX_PKG_HOMEPAGE=https://git.sr.ht/~ghost08/photon +TERMUX_PKG_DESCRIPTION="An RSS/Atom reader with the focus on speed, usability and a bit of unix philosophy" +TERMUX_PKG_LICENSE="GPL-3.0" +TERMUX_PKG_MAINTAINER="@termux" +_COMMIT=600ea9a50ecb49e21c4cc9c65e2a9cad69b32cf2 +TERMUX_PKG_VERSION=2022.03.16 +# This repository does not accept ".git" suffix: +TERMUX_PKG_SRCURL=https://git.sr.ht/~ghost08/photon +TERMUX_PKG_SHA256=SKIP_CHECKSUM +TERMUX_PKG_GIT_BRANCH=master +TERMUX_PKG_BUILD_IN_SRC=true +TERMUX_PKG_EXTRA_MAKE_ARGS="PREFIX=$TERMUX_PREFIX" + +termux_step_get_source() { + termux_git_clone_src +} + +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 +} + +termux_step_pre_configure() { + termux_setup_golang + + go mod init || : + go mod tidy +}