wok view nsd/receipt @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents
children 711632e87540
line source
1 # SliTaz package receipt.
3 PACKAGE="nsd"
4 VERSION="4.0.1"
5 CATEGORY="network"
6 SHORT_DESC="An authoritative only, high performance, and simple name server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 LICENSE="other"
10 WEB_SITE="http://www.nlnetlabs.nl/projects/nsd/"
11 WGET_URL="http://www.nlnetlabs.nl/downloads/nsd/$TARBALL"
12 CONFIG_FILES="/etc/nsd"
14 DEPENDS="libssl libcrypto"
15 BUILD_DEPENDS="libevent-dev openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/sbin $fs/usr
33 cp -a $install/var $fs
34 cp -a $install/etc $fs
35 }