wok-6.x annotate 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
rev   line source
pascal@4918 1 # SliTaz package receipt.
pascal@4918 2
pascal@4918 3 PACKAGE="cloudvpn"
pascal@4918 4 VERSION="1.99.8"
pascal@4918 5 CATEGORY="network"
pascal@4918 6 SHORT_DESC="Mesh-networked Virtual Private Network."
pascal@4918 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@4918 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@4918 9 WEB_SITE="http://www.e-x-a.org/?view=cloudvpn"
pascal@4918 10 WGET_URL="http://www.e-x-a.org/releases/$TARBALL"
pascal@4918 11 BUILD_DEPENDS="gnutls-dev zlib-dev"
pascal@4918 12 DEPENDS="gcc-lib-base gnutls zlib"
pascal@4918 13
pascal@4918 14 # Rules to configure and make the package.
pascal@4918 15 compile_rules()
pascal@4918 16 {
pascal@4918 17 cd $src
pascal@4918 18 ./autogen.sh
pascal@4918 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@4918 20 --mandir=/usr/share/man \
pascal@4918 21 $CONFIGURE_ARGS &&
pascal@4918 22 make &&
pascal@4918 23 make DESTDIR=$PWD/_pkg install
pascal@4918 24 }
pascal@4918 25
pascal@4918 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4918 27 genpkg_rules()
pascal@4918 28 {
pascal@4918 29 mkdir -p $fs/usr
pascal@4918 30 cp -a $_pkg/usr/bin $fs/usr
pascal@4918 31 }
pascal@4918 32