wok view mlvpn/receipt @ rev 23983

linld: fix strtol
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 24 08:47:45 2020 +0000 (2020-11-24)
parents 8aea70996e66
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="mlvpn"
4 VERSION="2.3.4"
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/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/zehome/MLVPN/archive/$VERSION.tar.gz"
14 DEPENDS="libpcap libsodium"
15 BUILD_DEPENDS="autoconf automake libev-dev libpcap-dev libsodium-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/sbin $fs/usr
33 }