Files
poky/meta/recipes-devtools/unifdef/unifdef-native_2.6.18+git.bb
Saul Wold b0a2c6da95 unifdef: add LIC_FILES_CHKSUM
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2010-12-23 15:52:06 +00:00

20 lines
383 B
BlitzBasic

DESCRIPTION = "Kernel header preprocessor"
SECTION = "devel"
LICENSE = "GPL"
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}
}