wok diff obfsproxy/receipt @ rev 12134

Re-fix clutter gtk so it build with both tazwok & cookutils
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Mar 13 21:06:51 2012 +0100 (2012-03-13)
parents
children 946e38bc203b
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/obfsproxy/receipt	Tue Mar 13 21:06:51 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 +