wok-6.x annotate tinc/receipt @ rev 15226
goffice: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Sep 22 18:06:29 2013 +0200 (2013-09-22) |
parents | 3f4d46548cfb |
children | 5baff08ebc11 |
rev | line source |
---|---|
pascal@4917 | 1 # SliTaz package receipt. |
pascal@4917 | 2 |
pascal@4917 | 3 PACKAGE="tinc" |
pascal@14467 | 4 VERSION="1.0.21" |
pascal@4917 | 5 CATEGORY="network" |
pascal@4917 | 6 SHORT_DESC="Virtual Private Network daemon with pseudo STUN support." |
pascal@4917 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14698 | 8 LICENSE="GPL2" |
pascal@4917 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4917 | 10 WEB_SITE="http://www.tinc-vpn.org/" |
pascal@4917 | 11 WGET_URL="${WEB_SITE}packages/$TARBALL" |
pascal@14698 | 12 TAGS="vpn tunnel" |
pascal@14698 | 13 |
pascal@4917 | 14 BUILD_DEPENDS="openssl-dev zlib-dev lzo-dev" |
pascal@4917 | 15 DEPENDS="libcrypto zlib lzo" |
pascal@4917 | 16 |
pascal@4917 | 17 # Rules to configure and make the package. |
pascal@4917 | 18 compile_rules() |
pascal@4917 | 19 { |
pascal@4917 | 20 cd $src |
pascal@4917 | 21 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@4917 | 22 --mandir=/usr/share/man \ |
pascal@4917 | 23 $CONFIGURE_ARGS && |
pascal@4917 | 24 make && |
pascal@14467 | 25 make DESTDIR=$DESTDIR install |
pascal@4917 | 26 } |
pascal@4917 | 27 |
pascal@4917 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4917 | 29 genpkg_rules() |
pascal@4917 | 30 { |
pascal@4917 | 31 mkdir -p $fs/usr |
pascal@14467 | 32 cp -a $install/usr/sbin $fs/usr |
pascal@4917 | 33 } |
pascal@4917 | 34 |