Files
meta-security/recipes-mac/smack/mmap-smack-test_1.0.bb
Scott Murray 0272225ccd Adapt to S/UNPACKDIR changes
Remove or update S definitions as required to work with oe-core
S/UNPACKDIR changes.

Signed-off-by: Scott Murray <scott.murray@konsulko.com>
2025-07-04 12:41:20 -04:00

18 lines
425 B
BlitzBasic

SUMMARY = "Mmap binary used to test smack mmap attribute"
DESCRIPTION = "Mmap binary used to test smack mmap attribute"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI = "file://mmap.c"
S = "${UNPACKDIR}"
do_compile() {
${CC} mmap.c ${LDFLAGS} -o mmap_test
}
do_install() {
install -d ${D}${bindir}
install -m 0755 mmap_test ${D}${bindir}
}