blob: 20b0dfc440edf412d833e0353ac5c473d547f21c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
SECTION = "console/network"
DESCRIPTION = "ISC DHCP Distribution (client and server)."
LICENSE = "BSD"
SRC_URI = "ftp://ftp.isc.org/isc/dhcp/dhcp-2.0-history/dhcp-${PV}.tar.gz \
file://make.patch;patch=1"
S = "${WORKDIR}/dhcp-${PV}"
export BINDIR = "${sbindir}"
do_configure () {
./configure ${TARGET_SYS}
}
do_install () {
oe_runmake "DESTDIR=${D}" install
}
|