wok-current rev 11655
Add obfsproxy (Tor proxy to help users in censored counties reach the web)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Feb 12 00:07:26 2012 +0100 (2012-02-12) |
parents | 5d7b47fda1c3 |
children | 6095f1582327 |
files | obfsproxy/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/obfsproxy/receipt Sun Feb 12 00:07:26 2012 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="obfsproxy" 1.7 +# git log --pretty=format:'' | wc -l 1.8 +VERSION="280" 1.9 +CATEGORY="network" 1.10 +SHORT_DESC="A simple obfuscating proxy from the Tor project." 1.11 +MAINTAINER="pankso@slitaz.org" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://www.torproject.org/" 1.14 +WGET_URL="git|http://git.torproject.org/obfsproxy.git " 1.15 + 1.16 +DEPENDS="libevent libssl" 1.17 +BUILD_DEPENDS="git wget libevent-dev openssl-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + cd $src 1.23 + ./autogen.sh && ./configure $CONFUGURE_ARGS && 1.24 + make && make install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr 1.31 + cp -a $install/usr/bin $fs/usr 1.32 +} 1.33 +