wok diff mlvpn/receipt @ rev 24051
Add veracrypt
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon May 24 11:24:29 2021 +0000 (2021-05-24) |
parents | 8aea70996e66 |
children | 5ea0ce1cecc0 |
line diff
1.1 --- a/mlvpn/receipt Wed May 14 11:22:33 2014 +0000 1.2 +++ b/mlvpn/receipt Mon May 24 11:24:29 2021 +0000 1.3 @@ -1,31 +1,33 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="mlvpn" 1.7 -VERSION="1.3.2" 1.8 +VERSION="2.3.4" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="Multi-Link Virtual Public Network" 1.11 +SHORT_DESC="Multi-Link Virtual Public Network." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="BSD" 1.14 WEB_SITE="https://zehome.github.io/MLVPN/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 WGET_URL="https://github.com/zehome/MLVPN/archive/$VERSION.tar.gz" 1.18 1.19 -DEPENDS="" 1.20 -BUILD_DEPENDS="wget autoconf automake" 1.21 +DEPENDS="libpcap libsodium" 1.22 +BUILD_DEPENDS="autoconf automake libev-dev libpcap-dev libsodium-dev" 1.23 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 - ./autogen.sh 1.28 - ./configure \ 1.29 - --prefix=/usr \ 1.30 + ./autogen.sh && 1.31 + ./configure \ 1.32 + --prefix=/usr \ 1.33 $CONFIGURE_ARGS && 1.34 - make && make install 1.35 + make && 1.36 + make install 1.37 } 1.38 1.39 # Rules to gen a SliTaz package suitable for Tazpkg. 1.40 genpkg_rules() 1.41 { 1.42 mkdir -p $fs/usr 1.43 - cp -a $install/usr/sbin $fs/usr 1.44 + cp -a $install/usr/sbin $fs/usr 1.45 }