wok rev 21552

updated nsd (4.0.1 -> 4.1.27)
author Hans-G?nter Theisgen
date Wed May 08 15:12:37 2019 +0100 (2019-05-08)
parents 1e4539eec013
children 5b74f1dbb49a
files nsd/receipt
line diff
     1.1 --- a/nsd/receipt	Tue May 07 19:16:48 2019 +0200
     1.2 +++ b/nsd/receipt	Wed May 08 15:12:37 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  }