wok-next annotate mlvpn/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents 8aea70996e66
children d5aab818505e
rev   line source
pascal@16667 1 # SliTaz package receipt.
pascal@16667 2
pascal@16667 3 PACKAGE="mlvpn"
pascal@16667 4 VERSION="1.3.2"
pascal@16667 5 CATEGORY="network"
pascal@16667 6 SHORT_DESC="Multi-Link Virtual Public Network"
pascal@16667 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@16667 8 LICENSE="BSD"
pascal@16667 9 WEB_SITE="https://zehome.github.io/MLVPN/"
pascal@16667 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@16667 11 WGET_URL="https://github.com/zehome/MLVPN/archive/$VERSION.tar.gz"
pascal@16667 12
al@20513 13 BUILD_DEPENDS="autoconf automake"
pascal@16667 14
pascal@16667 15 # Rules to configure and make the package.
pascal@16667 16 compile_rules()
pascal@16667 17 {
pascal@16667 18 ./autogen.sh
pascal@16667 19 ./configure \
pascal@16667 20 --prefix=/usr \
pascal@16667 21 $CONFIGURE_ARGS &&
pascal@16667 22 make && make install
pascal@16667 23 }
pascal@16667 24
pascal@16667 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@16667 26 genpkg_rules()
pascal@16667 27 {
pascal@16667 28 mkdir -p $fs/usr
pascal@16667 29 cp -a $install/usr/sbin $fs/usr
pascal@16667 30 }