wok view mlvpn/receipt @ rev 22074

updated unbound and unbound-dev (1.5.7 -> 1.9.4)
author Hans-G?nter Theisgen
date Tue Oct 29 15:54:23 2019 +0100 (2019-10-29)
parents
children f873d435f3fa
line source
1 # SliTaz package receipt.
3 PACKAGE="mlvpn"
4 VERSION="1.3.2"
5 CATEGORY="network"
6 SHORT_DESC="Multi-Link Virtual Public Network"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://zehome.github.io/MLVPN/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/zehome/MLVPN/archive/$VERSION.tar.gz"
13 DEPENDS=""
14 BUILD_DEPENDS="wget autoconf automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./autogen.sh
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/sbin $fs/usr
31 }