wok view proxychains-ng/receipt @ rev 17529

Up firefox-official (35.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 19 13:34:32 2015 +0100 (2015-01-19)
parents
children dcdfcafe039a
line source
1 # SliTaz package receipt.
3 PACKAGE="proxychains-ng"
4 VERSION="4.8.1"
5 CATEGORY="network"
6 SHORT_DESC="Forces any tcp connection made by a client to follow through proxy."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/rofl0r/proxychains-ng"
11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
12 CONFIG_FILES="/etc/proxychains.conf"
14 BUILD_DEPENDS="wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install &&
24 make DESTDIR=$DESTDIR install-config
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs
31 }