wok view nsd/receipt @ rev 21761

protobuf: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 27 12:32:05 2019 +0200 (2019-06-27)
parents 6b5eae3702e6
children 36ec463f0113
line source
1 # SliTaz package receipt.
3 PACKAGE="nsd"
4 VERSION="4.1.27"
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"
13 CONFIG_FILES="/etc/nsd"
15 DEPENDS="libssl libcrypto"
16 BUILD_DEPENDS="libevent-dev openssl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
35 cp -a $install/usr/sbin $fs/usr
36 cp -a $install/var $fs
37 cp -a $install/etc $fs
38 }