blob: 958f50b4cee6f2a5b8543e18db1bdf8520afedcb (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
SUMMARY = "AGL Application Launcher service"
DESCRIPTION = "AGL Application Launcher service build with recipe method"
HOMEPAGE = "https://git.automotivelinux.org/src/applaunchd"
SECTION = "apps"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=ae6497158920d9524cf208c09cc4c984"
DEPENDS = " \
glib-2.0 \
glib-2.0-native \
protobuf-native \
grpc-native \
grpc \
systemd \
"
PV = "2.0+git${SRCPV}"
SRC_URI = " \
git://gerrit.automotivelinux.org/gerrit/src/applaunchd;protocol=https;branch=${AGL_BRANCH} \
file://applaunchd.service \
file://agl-app@.service \
file://agl-app-web@.service \
file://agl-app-flutter@.service \
file://no-network.conf \
file://private-tmp.conf \
"
SRCREV = "992f87151ff189dc061624f010eddee2036fd33f"
S = "${WORKDIR}/git"
inherit meson pkgconfig systemd
SYSTEMD_SERVICE:${PN} = "applaunchd.service"
do_install:append() {
# Install generic template for all agl-app services
install -d ${D}${systemd_system_unitdir}
install -m 644 ${WORKDIR}/applaunchd.service ${D}${systemd_system_unitdir}/
install -m 644 ${WORKDIR}/agl-app@.service ${D}${systemd_system_unitdir}/
install -m 644 ${WORKDIR}/agl-app-web@.service ${D}${systemd_system_unitdir}/
install -m 644 ${WORKDIR}/agl-app-flutter@.service ${D}${systemd_system_unitdir}/
# Install individual sandboxing overrides/drop-ins to be used by apps
install -d ${D}${systemd_system_unitdir}/sandboxing
install -m 644 ${WORKDIR}/no-network.conf ${D}${systemd_system_unitdir}/sandboxing/
install -m 644 ${WORKDIR}/private-tmp.conf ${D}${systemd_system_unitdir}/sandboxing/
}
PACKAGE_BEFORE_PN += "${PN}-template-agl-app ${PN}-template-agl-app-web ${PN}-template-agl-app-flutter"
FILES:${PN} += "${systemd_system_unitdir} ${datadir}/dbus-1/"
FILES:${PN}-template-agl-app = "${systemd_system_unitdir}/agl-app@.service"
FILES:${PN}-template-agl-app-web = "${systemd_system_unitdir}/agl-app-web@.service"
FILES:${PN}-template-agl-app-flutter = "${systemd_system_unitdir}/agl-app-flutter@.service"
RDEPENDS:${PN} += " \
agl-session \
polkit-rule-agl-app \
"
RDEPENDS:${PN}-template-agl-app = "${PN}"
RDEPENDS:${PN}-template-agl-app-web = "${PN}"
RDEPENDS:${PN}-template-agl-app-flutter = "${PN}"
|