wok view obfsproxy/receipt @ rev 12442

obfsproxy: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 21 18:20:08 2012 +0200 (2012-04-21)
parents 7a95d458cef7
children 1c61e992da81
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 autoconf"
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 }