Files
meta-openembedded/meta-oe/recipes-devtools/systemd/nativesdk-systemd-systemctl.bb
Khem Raj c33cfad1b0 recipes: Switch away from S = WORKDIR
Make it dependent on UNPACKDIR instead

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-05-23 08:44:44 -07:00

17 lines
353 B
BlitzBasic

SUMMARY = "Wrapper for enabling systemd services"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
inherit nativesdk
SRC_URI = "file://systemctl"
S = "${WORKDIR}/sources"
UNPACKDIR = "${S}"
do_install() {
install -d ${D}${bindir}
install -m 0755 ${UNPACKDIR}/systemctl ${D}${bindir}
}