wok-6.x annotate tinc/receipt @ rev 17552
Update some post_install for install --root
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jan 30 10:17:37 2015 +0100 (2015-01-30) |
parents | 36e9807432da |
children | e19b640a110d |
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@15884 | 12 CONFIG_FILES="/etc/tinc" |
pascal@14698 | 13 TAGS="vpn tunnel" |
pascal@14698 | 14 |
pascal@4917 | 15 BUILD_DEPENDS="openssl-dev zlib-dev lzo-dev" |
pascal@4917 | 16 DEPENDS="libcrypto zlib lzo" |
pascal@4917 | 17 |
pascal@4917 | 18 # Rules to configure and make the package. |
pascal@4917 | 19 compile_rules() |
pascal@4917 | 20 { |
pascal@4917 | 21 cd $src |
pascal@15878 | 22 ./configure --prefix=/usr --sysconfdir=/etc \ |
pascal@15879 | 23 --localstatedir=/var \ |
pascal@4917 | 24 --mandir=/usr/share/man \ |
pascal@4917 | 25 $CONFIGURE_ARGS && |
pascal@4917 | 26 make && |
pascal@14467 | 27 make DESTDIR=$DESTDIR install |
pascal@4917 | 28 } |
pascal@4917 | 29 |
pascal@4917 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4917 | 31 genpkg_rules() |
pascal@4917 | 32 { |
pascal@4917 | 33 mkdir -p $fs/usr |
pascal@14467 | 34 cp -a $install/usr/sbin $fs/usr |
pascal@15885 | 35 cp -a $stuff/* $fs |
pascal@4917 | 36 } |
pascal@4917 | 37 |