wok annotate stunnel/receipt @ rev 20779
updated cellwriter (1.3.5 -> 1.3.6)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 14 13:52:33 2019 +0100 (2019-02-14) |
parents | |
children | e8ada3cab0bf |
rev | line source |
---|---|
pascal@20711 | 1 # SliTaz package receipt. |
pascal@20711 | 2 |
pascal@20711 | 3 PACKAGE="stunnel" |
pascal@20711 | 4 VERSION="5.50" |
pascal@20711 | 5 CATEGORY="network" |
pascal@20711 | 6 SHORT_DESC="A proxy designed to add TLS encryption functionality to existing clients and servers" |
pascal@20711 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@20711 | 8 LICENSE="GPL2" |
pascal@20711 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20711 | 10 WEB_SITE="https://www.stunnel.org/" |
pascal@20711 | 11 WGET_URL="${WEB_SITE}downloads/$TARBALL" |
pascal@20711 | 12 CONFIG_FILES="/etc/stunnel/stunnel.conf" |
pascal@20711 | 13 |
pascal@20711 | 14 DEPENDS="libssl" |
pascal@20711 | 15 BUILD_DEPENDS="openssl-dev" |
pascal@20711 | 16 |
pascal@20711 | 17 # Rules to configure and make the package. |
pascal@20711 | 18 compile_rules() |
pascal@20711 | 19 { |
pascal@20711 | 20 ./configure --prefix=/usr \ |
pascal@20711 | 21 --sysconfdir=/etc \ |
pascal@20711 | 22 --localstatedir=/var \ |
pascal@20711 | 23 --mandir=/usr/share/man \ |
pascal@20711 | 24 $CONFIGURE_ARGS && |
pascal@20711 | 25 make && |
pascal@20711 | 26 make DESTDIR=$DESTDIR install |
pascal@20711 | 27 } |
pascal@20711 | 28 |
pascal@20711 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@20711 | 30 genpkg_rules() |
pascal@20711 | 31 { |
pascal@20711 | 32 mkdir -p $fs/usr $fs/etc/stunnel |
pascal@20711 | 33 cp -a $install/usr/bin $fs/usr |
pascal@20711 | 34 cp -a $install/usr/lib $fs/usr |
pascal@20711 | 35 cp -a $install/var $fs |
pascal@20711 | 36 cp -a $install/etc/stunnel/stunnel.conf-sample $fs/etc/stunnel/stunnel.conf |
pascal@20711 | 37 } |
pascal@20711 | 38 |