wok annotate proxychains-ng/receipt @ rev 20423

Update some web_site to https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 09 12:16:16 2018 +0200 (2018-08-09)
parents
children dcdfcafe039a
rev   line source
pascal@17394 1 # SliTaz package receipt.
pascal@17394 2
pascal@17394 3 PACKAGE="proxychains-ng"
pascal@17394 4 VERSION="4.8.1"
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"
pascal@17394 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@17394 10 WEB_SITE="https://github.com/rofl0r/proxychains-ng"
pascal@17394 11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
pascal@17394 12 CONFIG_FILES="/etc/proxychains.conf"
pascal@17394 13
pascal@17394 14 BUILD_DEPENDS="wget"
pascal@17394 15
pascal@17394 16 # Rules to configure and make the package.
pascal@17394 17 compile_rules()
pascal@17394 18 {
pascal@17394 19 ./configure --prefix=/usr \
pascal@17394 20 --sysconfdir=/etc \
pascal@17394 21 $CONFIGURE_ARGS &&
pascal@17394 22 make &&
pascal@17394 23 make DESTDIR=$DESTDIR install &&
pascal@17394 24 make DESTDIR=$DESTDIR install-config
pascal@17394 25 }
pascal@17394 26
pascal@17394 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17394 28 genpkg_rules()
pascal@17394 29 {
pascal@17394 30 cp -a $install/usr $fs
pascal@17394 31 }
pascal@17394 32