mirror of
https://github.com/termux/termux-packages.git
synced 2024-11-24 02:36:16 +00:00
981665b324
Removing maintainers if there was no activity after pull request merging or if there was no activity in the last two years [no ci]
31 lines
906 B
Bash
31 lines
906 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="@termux"
|
|
TERMUX_PKG_VERSION="1.18.0"
|
|
TERMUX_PKG_SRCURL="https://github.com/Dreamacro/clash/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz"
|
|
TERMUX_PKG_SHA256=139794f50d3d94f438bab31a993cf25d7cbdf8ca8e034f3071e0dd0014069692
|
|
TERMUX_PKG_DEPENDS="resolv-conf"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_AUTO_UPDATE=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"
|
|
}
|