wok-next diff tinc/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 | d5aab818505e |
children |
line diff
1.1 --- a/tinc/receipt Fri Nov 02 14:15:08 2018 +0200 1.2 +++ b/tinc/receipt Sat Nov 21 14:32:44 2020 +0100 1.3 @@ -1,29 +1,32 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="tinc" 1.7 -VERSION="1.0.25" 1.8 +VERSION="1.0.36" 1.9 CATEGORY="network" 1.10 +TAGS="vpn tunnel" 1.11 SHORT_DESC="Virtual Private Network daemon with pseudo STUN support" 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 -WEB_SITE="http://www.tinc-vpn.org/" 1.15 +WEB_SITE="https://www.tinc-vpn.org/" 1.16 1.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 WGET_URL="${WEB_SITE}packages/$TARBALL" 1.19 1.20 -BUILD_DEPENDS="openssl-dev zlib-dev lzo-dev" 1.21 +BUILD_DEPENDS="lzo-dev openssl-dev zlib-dev" 1.22 1.23 -compile_rules() { 1.24 +compile_rules() 1.25 +{ 1.26 ./configure $CONFIGURE_ARGS && 1.27 make && 1.28 make DESTDIR=$install install || return 1 1.29 1.30 - cp -a $stuff/* $install 1.31 + cp -a $stuff/* $install 1.32 } 1.33 1.34 -genpkg_rules() { 1.35 +genpkg_rules() 1.36 +{ 1.37 copy @std 1.38 - DEPENDS="openssl zlib lzo" 1.39 + 1.40 + DEPENDS="lzo openssl zlib" 1.41 CONFIG_FILES="/etc/tinc" 1.42 - TAGS="vpn tunnel" 1.43 }