blob: 57ddf042359c0669eca84136ab160374124f27e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "NSD is an authoritative only, high performance, simple andopen source name server"
SECTION = "net"
PRIORITY = "optional"
MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
DEPENDS = "virtual/libc"
SRC_URI = "http://www.nlnetlabs.nl/downloads/nsd/nsd-${PV}.tar.gz"
inherit autotools libtool
do_install() {
oe_runconf configdir=${D}/etc/nsd \
pidfile=${D}/var/run/nsd.pid \
zonesfile=${D}/etc/nsd/nsd.zones \
dbfile=${D}/etc/nsd/nsd.db \
configfile=${D}/etc/nsd/nsdc.conf \
zonesdir=${D}/etc/nsd
}
|