wok-6.x diff stunnel/receipt @ rev 22369
ncursesw: corrected syntax in run_tic.sh
author | Hans-G?nter Theisgen |
---|---|
date | Mon Nov 25 09:00:47 2019 +0100 (2019-11-25) |
parents | f3c3948830ff |
children | 98eeff491f3e |
line diff
1.1 --- a/stunnel/receipt Wed Feb 06 16:26:24 2019 +0100 1.2 +++ b/stunnel/receipt Mon Nov 25 09:00:47 2019 +0100 1.3 @@ -1,26 +1,29 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="stunnel" 1.7 -VERSION="5.50" 1.8 +VERSION="5.55" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="A proxy designed to add TLS encryption functionality to existing clients and servers" 1.11 +SHORT_DESC="A proxy designed to add TLS encryption functionality to existing clients and servers." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="https://www.stunnel.org/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="https://www.stunnel.org/" 1.18 WGET_URL="${WEB_SITE}downloads/$TARBALL" 1.19 -CONFIG_FILES="/etc/stunnel/stunnel.conf" 1.20 1.21 DEPENDS="libssl" 1.22 -BUILD_DEPENDS="openssl-dev" 1.23 +BUILD_DEPENDS="libwrap-dev openssl-dev" 1.24 + 1.25 +CONFIG_FILES="/etc/stunnel/stunnel.conf" 1.26 1.27 # Rules to configure and make the package. 1.28 compile_rules() 1.29 { 1.30 - ./configure --prefix=/usr \ 1.31 - --sysconfdir=/etc \ 1.32 - --localstatedir=/var \ 1.33 - --mandir=/usr/share/man \ 1.34 + ./configure \ 1.35 + --prefix=/usr \ 1.36 + --sysconfdir=/etc \ 1.37 + --localstatedir=/var \ 1.38 + --mandir=/usr/share/man \ 1.39 $CONFIGURE_ARGS && 1.40 make && 1.41 make DESTDIR=$DESTDIR install 1.42 @@ -29,10 +32,11 @@ 1.43 # Rules to gen a SliTaz package suitable for Tazpkg. 1.44 genpkg_rules() 1.45 { 1.46 - mkdir -p $fs/usr $fs/etc/stunnel 1.47 - cp -a $install/usr/bin $fs/usr 1.48 - cp -a $install/usr/lib $fs/usr 1.49 - cp -a $install/var $fs 1.50 - cp -a $install/etc/stunnel/stunnel.conf-sample $fs/etc/stunnel/stunnel.conf 1.51 + mkdir -p $fs/usr 1.52 + mkdir -p $fs/etc/stunnel 1.53 + 1.54 + cp -a $install/usr/bin $fs/usr 1.55 + cp -a $install/usr/lib $fs/usr 1.56 + cp -a $install/var $fs 1.57 + cp -a $install/etc/stunnel/stunnel.conf-sample $fs/etc/stunnel/stunnel.conf 1.58 } 1.59 -