Files
termux-packages/root-packages/nexttrace/build.sh
termux-pacman-bot 61ac0db8da fix(root/nexttrace): version info
nexttrace-enhanced was renamed to nexttrace, and the enhanced version has been removed from the original repository.
2024-08-09 14:09:05 +00:00

33 lines
1.2 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/nxtrace/Ntrace-V1
TERMUX_PKG_DESCRIPTION="An open source visual routing tool that pursues light weight"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.3.2"
TERMUX_PKG_SRCURL=https://github.com/nxtrace/Ntrace-V1/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=da543516932672e80fd08e80a9d52e69c4ad1cb4f483b7efbd235ae0f8a1aaaa
TERMUX_PKG_REVISION=1
TERMUX_PKG_BREAKS="nexttrace-enhanced"
TERMUX_PKG_REPLACES="nexttrace-enhanced"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_pre_configure() {
termux_setup_golang
go mod init || :
go mod tidy
}
termux_step_make() {
local _BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
local _COMMIT_SHA1=$(git ls-remote https://github.com/nxtrace/Ntrace-V1 refs/tags/v$TERMUX_PKG_VERSION | head -c 9)
go build -trimpath -o nexttrace \
-ldflags "-X 'github.com/nxtrace/NTrace-core/config.Version=${TERMUX_PKG_VERSION}' \
-X 'github.com/nxtrace/NTrace-core/config.BuildDate=${_BUILD_DATE}' \
-X 'github.com/nxtrace/NTrace-core/config.CommitID=${_COMMIT_SHA1}' -w -s"
}
termux_step_make_install() {
install -Dm700 -t "${TERMUX_PREFIX}"/bin nexttrace
}