crux-ports

My CRUX Linux ports
Log | Files | Refs | README

commit 980b56a6aceac818050cebc404960044b7682424
parent d563bb0e03686f1e2e62dce26c4b3d53bb935432
Author: Shokara Kou <kou@13f0.net>
Date:   Fri, 13 May 2022 12:33:30 -0400

add proxychains-ng

Diffstat:
Aproxychains-ng/.footprint | 8++++++++
Aproxychains-ng/.md5sum | 1+
Aproxychains-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 +}