wok view obfsproxy/receipt @ rev 12339

acl: Remove slitaz-toolchain from build depends. It should be installed in chroot.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Apr 19 09:12:10 2012 +0000 (2012-04-19)
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 }