blob: 0614337d5b1feed21b80bb59a596913619a5f854 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "NSD is an authoritative only, high performance, simple and opensource name server"
SECTION = "console/network"
PRIORITY = "optional"
SRC_URI = "http://www.nlnetlabs.nl/downloads/nsd/nsd-${PV}.tar.gz"
LICENSE = "nsd"
inherit autotools
do_install() {
oe_runmake configdir=${D}${sysconfdir}/nsd \
pidfile=${D}${localstatedir}/run/nsd.pid \
zonesfile=${D}${sysconfdir}/nsd/nsd.zones \
dbfile=${D}${sysconfdir}/nsd/nsd.db \
configfile=${D}${sysconfdir}/nsd/nsdc.conf \
zonesdir=${D}${sysconfdir}/nsd \
prefix=${D}${prefix} \
exec_prefix=${D}${exec_prefix} \
sbindir=${D}${sbindir} \
mandir=${D}${mandir} \
install
}
|