wok annotate tinc/receipt @ rev 15758
gtk-doc: create /usr/share/gtk-doc/html dir
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jan 04 21:28:40 2014 +0000 (2014-01-04) |
parents | b768ede0c5cb |
children | 779ec1caa06d |
rev | line source |
---|---|
pascal@4917 | 1 # SliTaz package receipt. |
pascal@4917 | 2 |
pascal@4917 | 3 PACKAGE="tinc" |
pascal@15725 | 4 VERSION="1.0.23" |
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 |