wok-next diff obfsproxy/receipt @ rev 21727
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Nov 21 14:32:44 2020 +0100 (2020-11-21) |
parents | e6615350078d |
children |
line diff
1.1 --- a/obfsproxy/receipt Wed Feb 28 16:28:07 2018 +0200 1.2 +++ b/obfsproxy/receipt Sat Nov 21 14:32:44 2020 +0100 1.3 @@ -4,27 +4,25 @@ 1.4 # git log --pretty=format:'' | wc -l 1.5 VERSION="280" 1.6 CATEGORY="network" 1.7 -SHORT_DESC="A simple obfuscating proxy from the Tor project." 1.8 -MAINTAINER="pankso@slitaz.org" 1.9 +SHORT_DESC="A simple obfuscating proxy from the Tor project" 1.10 +MAINTAINER="devel@slitaz.org" 1.11 LICENSE="BSD" 1.12 +WEB_SITE="https://www.torproject.org/" 1.13 + 1.14 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.15 -WEB_SITE="http://www.torproject.org/" 1.16 -WGET_URL="git|http://git.torproject.org/obfsproxy.git " 1.17 +WGET_URL="git|http://git.torproject.org/obfsproxy.git" 1.18 1.19 -DEPENDS="libevent openssl" 1.20 BUILD_DEPENDS="git wget libevent-dev openssl-dev autoconf automake" 1.21 1.22 -# Rules to configure and make the package. 1.23 -compile_rules() 1.24 -{ 1.25 - cd $src 1.26 - ./autogen.sh && ./configure $CONFUGURE_ARGS && 1.27 - make && make install 1.28 +compile_rules() { 1.29 + ./autogen.sh && 1.30 + ./configure $CONFUGURE_ARGS && 1.31 + make && 1.32 + make install 1.33 } 1.34 1.35 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.36 -genpkg_rules() 1.37 -{ 1.38 +genpkg_rules() { 1.39 mkdir -p $fs/usr 1.40 cp -a $install/usr/bin $fs/usr 1.41 + DEPENDS="libevent openssl" 1.42 }