0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-13 10:49:44 +00:00
Files
termux-packages/packages/kcptun/build.sh
Termux Github Actions cdb7cf0966 bump(main/kcptun): 20241227
This commit has been automatically submitted by Github Actions.
2024-12-30 06:11:25 +00:00

27 lines
1.0 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/xtaci/kcptun
TERMUX_PKG_DESCRIPTION="A Stable & Secure Tunnel based on KCP with N:M multiplexing and FEC"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="20241227"
TERMUX_PKG_SRCURL=https://github.com/xtaci/kcptun/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=744688140df5f72bf9f5cc26ed61ce6a2a2090c0a5d5bf54e3b67b6c933a6c51
TERMUX_PKG_REPLACES="kcptun-client, kcptun-server"
TERMUX_PKG_BREAKS="kcptun-client, kcptun-server"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_golang
LDFLAGS="-X main.VERSION=${TERMUX_PKG_VERSION#*:} -s -w"
GCFLAGS=""
go build -mod=vendor -ldflags "$LDFLAGS" -gcflags "$GCFLAGS" -o kcptun-client github.com/xtaci/kcptun/client
go build -mod=vendor -ldflags "$LDFLAGS" -gcflags "$GCFLAGS" -o kcptun-server github.com/xtaci/kcptun/server
}
termux_step_make_install() {
install -Dm700 -t "${TERMUX_PREFIX}"/bin kcptun-client
install -Dm700 -t "${TERMUX_PREFIX}"/bin kcptun-server
}