aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/genlist/genlist.bb
blob: 6c8695228bcc46c857e613f82fbb188bcf7c86ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
DESCRIPTION = "IP Address List Generator"
SECTION = "utils"
LICENSE = "GPL"
PR = "r1"

SRC_URI = "file://genlist.c \
	   file://Makefile"

DEFAULT_PREFERENCE="-1"

S = "${WORKDIR}"

do_compile() {
	oe_runmake all
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 genlist ${D}${bindir}/
}