From e03af7f866ac7b611f9c11409ec00c783901ea0e Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Thu, 9 Dec 2021 04:11:22 +0100 Subject: pcr: Add obfsproxy 0.0.11 from Aur Signed-off-by: Denis 'GNUtoo' Carikli --- pcr/obfs4proxy/PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pcr/obfs4proxy/PKGBUILD (limited to 'pcr/obfs4proxy/PKGBUILD') diff --git a/pcr/obfs4proxy/PKGBUILD b/pcr/obfs4proxy/PKGBUILD new file mode 100644 index 000000000..ecc040037 --- /dev/null +++ b/pcr/obfs4proxy/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer (AUR): mutantmonkey +# Contributor (AUR): shyokou +# Contributor (AUR): FzerorubigD + +# parabola changes and rationale: +# no changes. + +pkgname=obfs4proxy +pkgver=0.0.11 +pkgrel=1 +pkgdesc='The obfourscator - a pluggable transport proxy written in Go' +arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64') +url='https://gitweb.torproject.org/pluggable-transports/obfs4.git/' +license=('BSD') +makedepends=('git' 'go') +optdepends=('tor: you need tor to use this package') +source=("https://people.torproject.org/~yawning/releases/obfs4proxy/obfs4proxy-${pkgver}.tar.xz") +sha512sums=('7d7fef951bcebd4433dfb638896d4be15dc090d38a3b54c9a9d34ea264b006cff75a42da1b97b6af998cfbc3b44919770cd8cb519ada351486a247faf47c656f') + +build() { + cd "${srcdir}/" + GOPATH="${srcdir}/go" go build -o obfs4proxy/obfs4proxy ./obfs4proxy +} + +package() { + cd "${srcdir}/" + install -Dm0755 obfs4proxy/obfs4proxy "${pkgdir}/usr/bin/obfs4proxy" + install -Dm0644 doc/obfs4proxy.1 "${pkgdir}/usr/share/man/man1/obfs4proxy.1" + install -Dm0644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog" + install -Dm0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +## vim:set ts=2 sw=2 et: -- cgit v1.2.3