wok-6.x view cloudvpn/receipt @ rev 4918
Add cloudvpn
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Feb 15 09:51:15 2010 +0100 (2010-02-15) |
parents | |
children | 12f8af5fe3c8 |
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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./autogen.sh
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }