wok view nsd/receipt @ rev 23615

updated reiser4progs and reiser4progs-dev (1.2.1 -> 2.0.0)
author Hans-G?nter Theisgen
date Tue Apr 14 07:45:25 2020 +0100 (2020-04-14)
parents 711632e87540
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="nsd"
4 VERSION="4.3.0"
5 CATEGORY="network"
6 SHORT_DESC="An authoritative only, high performance, and simple name server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="https://www.nlnetlabs.nl/projects/nsd/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://www.nlnetlabs.nl/downloads/$PACKAGE/$TARBALL"
14 DEPENDS="libcrypto libssl"
15 BUILD_DEPENDS="libevent-dev openssl-dev"
17 CONFIG_FILES="/etc/nsd"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
36 cp -a $install/usr/sbin $fs/usr
37 cp -a $install/var $fs
38 cp -a $install/etc $fs
39 }