mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-07 04:17:43 +00:00
21 lines
465 B
Plaintext
21 lines
465 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|
|
|
PRINC := "${@int(PRINC) + 3}"
|
|
|
|
inherit systemd
|
|
|
|
SRC_URI += "file://cloud9.service"
|
|
|
|
inherit systemd
|
|
|
|
NATIVE_SYSTEMD_SUPPORT = "1"
|
|
RPROVIDES_${PN} += "${PN}-systemd"
|
|
RREPLACES_${PN} += "${PN}-systemd"
|
|
RCONFLICTS_${PN} += "${PN}-systemd"
|
|
SYSTEMD_SERVICE_${PN} = "cloud9.service"
|
|
do_install_append() {
|
|
install -d ${D}${systemd_unitdir}/system
|
|
install -m 0644 ${WORKDIR}/cloud9.service ${D}${systemd_unitdir}/system
|
|
}
|
|
|