wok view cloudvpn/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
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 }