generic-poky/meta/recipes-devtools/unifdef/unifdef-native_2.6.18+git.bb
Khem Raj dbda8b5f48 unifdef-native: Correct LICENSE
The header in sourcefile says its BSD licensed
not GPL therefore make the correction

(From OE-Core rev: 06bd5b3d10d479fce02cd1d5821faeb9afb4ebac)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-08-19 10:46:39 +01:00

22 lines
403 B
BlitzBasic

DESCRIPTION = "Kernel header preprocessor"
SECTION = "devel"
LICENSE = "BSD-2-Clause"
PR = "r1"
LIC_FILES_CHKSUM = "file://${WORKDIR}/unifdef.c;endline=32;md5=1a33f5c39aa718a89058721df61979bd"
SRC_URI = "file://unifdef.c"
inherit native
do_compile() {
${CC} ${CFLAGS} ${LDFLAGS} -o unifdef ${WORKDIR}/unifdef.c
}
do_install() {
install -d ${D}${bindir}
install -m 0755 unifdef ${D}${bindir}
}