wok diff nsd/receipt @ rev 22005
added tar-lang 1.32
author | Hans-G?nter Theisgen |
---|---|
date | Fri Oct 18 17:38:24 2019 +0100 (2019-10-18) |
parents | 6b5eae3702e6 |
children | 36ec463f0113 |
line diff
1.1 --- a/nsd/receipt Sun Feb 23 20:33:22 2014 +0000 1.2 +++ b/nsd/receipt Fri Oct 18 17:38:24 2019 +0100 1.3 @@ -1,14 +1,15 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="nsd" 1.7 -VERSION="4.0.1" 1.8 +VERSION="4.1.27" 1.9 CATEGORY="network" 1.10 SHORT_DESC="An authoritative only, high performance, and simple name server." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 +LICENSE="other" 1.13 +WEB_SITE="https://www.nlnetlabs.nl/projects/nsd/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -LICENSE="other" 1.17 -WEB_SITE="http://www.nlnetlabs.nl/projects/nsd/" 1.18 -WGET_URL="http://www.nlnetlabs.nl/downloads/nsd/$TARBALL" 1.19 +WGET_URL="https://www.nlnetlabs.nl/downloads/$PACKAGE/$TARBALL" 1.20 CONFIG_FILES="/etc/nsd" 1.21 1.22 DEPENDS="libssl libcrypto" 1.23 @@ -17,9 +18,10 @@ 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 - ./configure --prefix=/usr \ 1.28 - --sysconfdir=/etc \ 1.29 - --localstatedir=/var \ 1.30 + ./configure \ 1.31 + --prefix=/usr \ 1.32 + --sysconfdir=/etc \ 1.33 + --localstatedir=/var \ 1.34 $CONFIGURE_ARGS && 1.35 make && 1.36 make DESTDIR=$DESTDIR install 1.37 @@ -29,7 +31,8 @@ 1.38 genpkg_rules() 1.39 { 1.40 mkdir -p $fs/usr 1.41 - cp -a $install/usr/sbin $fs/usr 1.42 - cp -a $install/var $fs 1.43 - cp -a $install/etc $fs 1.44 + 1.45 + cp -a $install/usr/sbin $fs/usr 1.46 + cp -a $install/var $fs 1.47 + cp -a $install/etc $fs 1.48 }