wok-next rev 17151
Add proxytunnel
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Sep 11 13:24:02 2014 +0200 (2014-09-11) |
parents | ca224f09fcb3 |
children | 5ed8a72ad8ba |
files | frox/receipt proxytunnel/receipt |
line diff
1.1 --- a/frox/receipt Wed Sep 10 18:26:08 2014 +0200 1.2 +++ b/frox/receipt Thu Sep 11 13:24:02 2014 +0200 1.3 @@ -27,5 +27,6 @@ 1.4 { 1.5 mkdir -p $fs/etc 1.6 cp -a $src/src/frox.conf $fs/etc 1.7 + chown root.root $fs/etc/frox.conf 1.8 cp -a $install/usr $fs/ 1.9 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/proxytunnel/receipt Thu Sep 11 13:24:02 2014 +0200 2.3 @@ -0,0 +1,29 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="proxytunnel" 2.7 +VERSION="1.9.0" 2.8 +CATEGORY="network" 2.9 +SHORT_DESC="Connecting outside through HTTP(S) proxies." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +TARBALL="$PACKAGE-$VERSION.tgz" 2.13 +WEB_SITE="http://proxytunnel.sourceforge.net/" 2.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.15 + 2.16 +DEPENDS="libcrypto libssl zgip" 2.17 +BUILD_DEPENDS="openssl-dev" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + sed -i 's|/local||' Makefile 2.23 + make && 2.24 + make DESTDIR=$DESTDIR install 2.25 +} 2.26 + 2.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.28 +genpkg_rules() 2.29 +{ 2.30 + mkdir -p $fs/usr 2.31 + cp -a $install/usr/bin $fs/usr 2.32 +}