wok view cloudvpn/receipt @ rev 19857

syslinux/iso2exe: fix recursive_partition + hybrib_mbr
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 18 09:21:47 2017 +0100 (2017-03-18)
parents eb8067417980
children 3132d67b7e38
line source
1 # SliTaz package receipt.
3 PACKAGE="cloudvpn"
4 VERSION="1.99.8"
5 CATEGORY="network"
6 SHORT_DESC="Mesh-networked Virtual Private Network."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://dev.e-x-a.org/projects/cloudvpn/wiki"
11 WGET_URL="http://dev.e-x-a.org/attachments/download/1/$TARBALL"
12 TAGS="vpn tunnel"
14 BUILD_DEPENDS="gnutls-dev zlib-dev automake"
15 DEPENDS="gcc-lib-base gnutls zlib libtasn1"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./autogen.sh
22 ./configure \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR 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/bin $fs/usr
33 }