mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-09 18:01:50 +01:00
33 lines
841 B
Plaintext
33 lines
841 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=proxychains-ng
|
|
pkgver=4.15
|
|
pkgrel=0
|
|
pkgdesc="This tool provides proxy server support to any app."
|
|
url="https://github.com/rofl0r/proxychains-ng"
|
|
arch="all"
|
|
license="GPL-2.0"
|
|
options="!check"
|
|
source="https://github.com/rofl0r/$pkgname/archive/v$pkgver.zip"
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc/proxychains
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install install-config
|
|
ln -s proxychains4 "$pkgdir"/usr/bin/proxychains
|
|
}
|
|
|
|
sha512sums="
|
|
48e3c2fe5a0772b199c9df128add1e671b08b4406c55833ba20ba3b1997f0a222a09483d19d020ace3239d590b6a3bb66ea3e58dab041bf06c415bce610dece7 v4.15.zip
|
|
"
|