wok annotate proxychains-ng/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents 2d884172b8bf
children 5ea0ce1cecc0
rev   line source
pascal@17394 1 # SliTaz package receipt.
pascal@17394 2
pascal@17394 3 PACKAGE="proxychains-ng"
Hans-G?nter@21716 4 VERSION="4.14"
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@17394 16 # Rules to configure and make the package.
pascal@17394 17 compile_rules()
pascal@17394 18 {
Hans-G?nter@21716 19 ./configure \
Hans-G?nter@21716 20 --prefix=/usr \
Hans-G?nter@21716 21 --sysconfdir=/etc \
pascal@17394 22 $CONFIGURE_ARGS &&
pascal@17394 23 make &&
pascal@17394 24 make DESTDIR=$DESTDIR install &&
pascal@17394 25 make DESTDIR=$DESTDIR install-config
pascal@17394 26 }
pascal@17394 27
pascal@17394 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17394 29 genpkg_rules()
pascal@17394 30 {
pascal@17394 31 cp -a $install/usr $fs
pascal@17394 32 }