wok view cloudvpn/receipt @ rev 8321

Up: tazpkg 4.2.4, tazwok 0.0.5.2
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Feb 01 21:00:10 2011 +0100 (2011-02-01)
parents 12f8af5fe3c8
children 531e1bc559d9
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.e-x-a.org/?view=cloudvpn"
10 WGET_URL="http://www.e-x-a.org/releases/$TARBALL"
11 BUILD_DEPENDS="gnutls-dev zlib-dev"
12 DEPENDS="gcc-lib-base gnutls zlib libtasn1"
13 TAGS="vpn tunnel"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./autogen.sh
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }