blob: a3d0bb248f2cd384c7f699ef961501c73b905c33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
SUMMARY = "Weston readiness checker"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
inherit systemd
SRC_URI = "file://weston-ready \
file://weston-ready.service \
"
do_install() {
install -D -m 0755 ${WORKDIR}/weston-ready ${D}${bindir}/weston-ready
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
install -D -m 0644 ${WORKDIR}/weston-ready.service ${D}${systemd_system_unitdir}/weston-ready.service
fi
}
SYSTEMD_SERVICE_${PN} = "weston-ready.service"
RDEPENDS_${PN} += "weston bash"
|