wok annotate proxychains-ng/receipt @ rev 25222
updated python-pyajam ( -> 0.2)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 13 16:19:37 2022 +0100 (2022-07-13) |
parents | 5ea0ce1cecc0 |
children | 0262035dc1e7 |
rev | line source |
---|---|
pascal@17394 | 1 # SliTaz package receipt. |
pascal@17394 | 2 |
pascal@17394 | 3 PACKAGE="proxychains-ng" |
Hans-G?nter@25154 | 4 VERSION="4.16" |
pascal@17394 | 5 CATEGORY="network" |
pascal@17394 | 6 SHORT_DESC="Forces any tcp connection made by a client to follow through proxy." |
pascal@17394 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@17394 | 8 LICENSE="GPL2" |
Hans-G?nter@21716 | 9 WEB_SITE="https://github.com/rofl0r/proxychains-ng" |
Hans-G?nter@21716 | 10 |
pascal@17394 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@17394 | 12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" |
Hans-G?nter@21716 | 13 |
pascal@17394 | 14 CONFIG_FILES="/etc/proxychains.conf" |
pascal@17394 | 15 |
pascal@24055 | 16 current_version() |
pascal@24055 | 17 { |
pascal@24055 | 18 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ |
pascal@24055 | 19 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' |
pascal@24055 | 20 } |
pascal@24055 | 21 |
pascal@17394 | 22 # Rules to configure and make the package. |
pascal@17394 | 23 compile_rules() |
pascal@17394 | 24 { |
Hans-G?nter@21716 | 25 ./configure \ |
Hans-G?nter@21716 | 26 --prefix=/usr \ |
Hans-G?nter@21716 | 27 --sysconfdir=/etc \ |
pascal@17394 | 28 $CONFIGURE_ARGS && |
pascal@17394 | 29 make && |
Hans-G?nter@25154 | 30 make install DESTDIR=$DESTDIR && |
Hans-G?nter@25154 | 31 make install-config DESTDIR=$DESTDIR |
pascal@17394 | 32 } |
pascal@17394 | 33 |
pascal@17394 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17394 | 35 genpkg_rules() |
pascal@17394 | 36 { |
Hans-G?nter@25154 | 37 cp -a $install/usr $fs |
pascal@17394 | 38 } |