commit 980b56a6aceac818050cebc404960044b7682424 parent d563bb0e03686f1e2e62dce26c4b3d53bb935432 Author: Shokara Kou <kou@13f0.net> Date: Fri, 13 May 2022 12:33:30 -0400 add proxychains-ng Diffstat:
| A | proxychains-ng/.footprint | | | 8 | ++++++++ |
| A | proxychains-ng/.md5sum | | | 1 | + |
| A | proxychains-ng/Pkgfile | | | 21 | +++++++++++++++++++++ |
3 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/proxychains-ng/.footprint b/proxychains-ng/.footprint @@ -0,0 +1,8 @@ +drwxr-xr-x root/root etc/ +-rw-r--r-- root/root etc/proxychains.conf +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/proxychains4 +-rwxr-xr-x root/root usr/bin/proxychains4-daemon +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libproxychains4.so diff --git a/proxychains-ng/.md5sum b/proxychains-ng/.md5sum @@ -0,0 +1 @@ +16161fd6ef88492f602845c68b9de2a8 proxychains-ng-4.16.tar.xz diff --git a/proxychains-ng/Pkgfile b/proxychains-ng/Pkgfile @@ -0,0 +1,21 @@ +# Description: DESCRIPTION +# URL: PROJECT_URL +# Maintainer: Shokara Kou, kou at 13f0 dot net +# Depends on: DEPENDENCIES +# Optional: OPTIONAL (remove if empty) + +name=proxychains-ng +version=4.16 +release=1 +source=(http://ftp.barfooze.de/pub/sabotage/tarballs/$name-$version.tar.xz) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc + + make + make DESTDIR=$PKG install install-config +}