aboutsummaryrefslogtreecommitdiffstats
path: root/packages/genlist/genlist.bb
blob: 467a5ee7bda56df339c43b62e168b22a425616a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SECTION = "utility"
DESCRIPTION = "IP Address List Generator"

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

DEFAULT_PREFERENCE="-1"


S = "${WORKDIR}"
LICENSE = "GPL"
do_compile() {
	oe_runmake all
}

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