summaryrefslogtreecommitdiff
path: root/recipes-graphics/wayland-app-launch/wayland-app-launch.inc
blob: 588ca4b005ebb6201f85ba07186a96dad423412e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
SUMMARY = "Wayland application autostart"
DESCRIPTION = "This will start a wayland application after the wayland socket has been created."
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

inherit allarch systemd

RDEPENDS:${PN} += "weston-init ${INITIAL_APP_PKGS}"

S = "${WORKDIR}"

SRC_URI = " \
    file://wayland-app-launch.service.in \
"
FILESEXTRAPATHS:prepend := "${THISDIR}/wayland-app-launch:"

APPLICATION_ENVIRONMENT ??= ""

do_compile () {
    sed -e "s:@@wayland-application@@:${WAYLAND_APPLICATION}:" \
        -e "s:@@application-environment@@:${APPLICATION_ENVIRONMENT}:" \
	wayland-app-launch.service.in > wayland-app-launch.service
}

do_install () {
    install -d ${D}${systemd_unitdir}/system/
    install -m 0644 ${WORKDIR}/wayland-app-launch.service ${D}${systemd_unitdir}/system
}

SYSTEMD_PACKAGES = "${PN}"
SYSTEMD_SERVICE:${PN} = "wayland-app-launch.service"