c137a6ae8b
acr, atomicparsley, brook, calc, clash, cmake, ctags, dart
30 lines
884 B
Bash
30 lines
884 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/Dreamacro/clash
|
|
TERMUX_PKG_DESCRIPTION="A rule-based tunnel in Go."
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="Philipp Schmitt <philipp@schmitt.co>"
|
|
TERMUX_PKG_VERSION=1.4.1
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL="https://github.com/Dreamacro/clash/archive/v${TERMUX_PKG_VERSION}.tar.gz"
|
|
TERMUX_PKG_SHA256=826629048f02a47fd56f29f16f06731f71c5c698401d77357c22a6de7f5e4e4f
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
|
|
mkdir ./gopath
|
|
export GOPATH="$PWD/gopath"
|
|
|
|
GOBUILD=CGO_ENABLED=0 \
|
|
go build \
|
|
-trimpath \
|
|
-ldflags "-X 'github.com/Dreamacro/clash/constant.Version=${TERMUX_PKG_VERSION}'
|
|
-X 'github.com/Dreamacro/clash/constant.BuildTime=$(date -u)'
|
|
-w -s -buildid='" \
|
|
-o "clash.bin" \
|
|
main.go
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
mv ./clash.bin "${TERMUX_PREFIX}/bin/clash"
|
|
}
|