termux-packages/packages/obfs4proxy/build.sh
Leonid Pliushch 9c9e7f65b8 update maintainer info
Specifying Termux org members is more correct as we don't have repo-specific
maintainers for termux-packages.

DEB control field specification doesn't allow to specify multiple people as
package maintainers. Value "Termux members @termux" will be used as default
for that field which can be overridden on per-package basis if needed.

%ci:no-build
2020-05-13 11:05:52 +03:00

25 lines
787 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/Yawning/obfs4
TERMUX_PKG_DESCRIPTION="A pluggable transport plugin for Tor"
TERMUX_PKG_LICENSE="BSD 2-Clause, BSD 3-Clause, GPL-3.0"
TERMUX_PKG_VERSION=0.0.11
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://github.com/Yawning/obfs4/archive/obfs4proxy-$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=46f621f1d94d244e7b1d0b93dafea7abadb2428f8b1d0463559426362ea98eae
TERMUX_PKG_BUILD_IN_SRC=true
## obfs4proxy is a pluggable transport plugin for Tor, so
## marking "tor" package as dependency.
TERMUX_PKG_DEPENDS="tor"
termux_step_make() {
termux_setup_golang
cd "$TERMUX_PKG_SRCDIR"/obfs4proxy
go get -d ./...
go build .
}
termux_step_post_make_install() {
cd "$TERMUX_PKG_SRCDIR"/obfs4proxy
install -Dm700 obfs4proxy "${TERMUX_PREFIX}"/bin/
}