0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-01-31 21:22:27 +00:00
Kevin WIlliams 4416aa71f3 *: Rebuild with Go 1.21.0/1.20.7 (3)
Signed-off-by: Kevin WIlliams <admin@utermux.dev>
2023-08-12 14:18:45 +08:00

40 lines
1.3 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://aditya-k2.github.io/gomp/
TERMUX_PKG_DESCRIPTION="MPD client inspired by ncmpcpp with builtin cover-art view and LastFM integration"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
_COMMIT=bc981b41e9499dd666d340e6bc20cc2f403e3871
TERMUX_PKG_VERSION=2023.02.02
TERMUX_PKG_REVISION=2
TERMUX_PKG_SRCURL=git+https://github.com/aditya-K2/gomp
TERMUX_PKG_SHA256=0e6c00426b5952642527234726e3936d78b30b5f08962a2dddac945ca7f91001
TERMUX_PKG_GIT_BRANCH=master
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_DEPENDS="mpd"
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_make() {
termux_setup_golang
export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
go build -o gomp
}
termux_step_make_install() {
install -Dm700 gomp $TERMUX_PREFIX/bin/
}