mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
24 lines
1.0 KiB
Bash
24 lines
1.0 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://snowflake.torproject.org/
|
|
TERMUX_PKG_DESCRIPTION="Pluggable Transport using WebRTC, inspired by Flashproxy"
|
|
TERMUX_PKG_LICENSE="BSD 3-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="2.10.1"
|
|
TERMUX_PKG_SRCURL=https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/archive/v${TERMUX_PKG_VERSION}/snowflake-v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=fd3a8036d1a94bbe63bc37580caa028540926d61a60a650a90cab0dea185c018
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
|
|
# https://github.com/termux/termux-packages/issues/22236
|
|
# https://github.com/wlynxg/anet?tab=readme-ov-file#how-to-build-with-go-1230-or-later
|
|
go build -ldflags=-checklinkname=0 -o snowflake-client $TERMUX_PKG_SRCDIR/client/
|
|
go build -ldflags=-checklinkname=0 -o snowflake-proxy $TERMUX_PKG_SRCDIR/proxy/
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin snowflake-client
|
|
install -Dm700 -t $TERMUX_PREFIX/bin snowflake-proxy
|
|
}
|