wok diff obfsproxy/receipt @ rev 11722
Up: emacs to 23.4 again. I think it maybe fix from my last commit.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Feb 20 16:50:59 2012 -0500 (2012-02-20) |
parents | |
children | 946e38bc203b |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/obfsproxy/receipt Mon Feb 20 16:50:59 2012 -0500 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 +