wok view 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 source
1 # SliTaz package receipt.
3 PACKAGE="obfsproxy"
4 # git log --pretty=format:'' | wc -l
5 VERSION="280"
6 CATEGORY="network"
7 SHORT_DESC="A simple obfuscating proxy from the Tor project."
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.torproject.org/"
11 WGET_URL="git|http://git.torproject.org/obfsproxy.git "
13 DEPENDS="libevent libssl"
14 BUILD_DEPENDS="git wget libevent-dev openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./autogen.sh && ./configure $CONFUGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }