blob: 4baaa517165932f04c5f54ce6829d78bec692911 (
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
|
# For now disable gstreamer to avoid needing to enable "commercial"
# licenses for the stated ffmpeg dependency.
PACKAGECONFIG:remove = "gstreamer"
# Enable verbose logging on runtimedebug image
PACKAGECONFIG:append:runtimedebug = "verbose"
USER_SERVICE = "flutter-auto.service"
FILESEXTRAPATHS:append := "${THISDIR}/files:"
SRC_URI += "\
file://${USER_SERVICE} \
file://gallery_on_bg-debug.json \
file://gallery_on_bg-profile.json \
file://gallery_on_bg-release.json \
file://0002-shell-configuration-Obey-json-configuration-file.patch \
file://0003-shell-configuration-Fixes-to-general-options.patch \
file://0004-Add-app-id-command-line-argument.patch \
"
cmake_do_install:append() {
install -d ${D}${systemd_user_unitdir}/agl-session.target.wants
install -D -m0644 ${WORKDIR}/${USER_SERVICE} ${D}${systemd_user_unitdir}/${USER_SERVICE}
install -D -m0644 ${WORKDIR}/gallery_on_bg-release.json ${D}${datadir}/flutter/default.json
}
cmake_do_install:append:runtimedebug() {
# the dev host controls starting/stopping the flutter-auto process when runtime=debug
install -D -m0644 ${WORKDIR}/gallery_on_bg-debug.json ${D}${datadir}/flutter/default.json
}
cmake_do_install:append:runtimeprofile() {
# the dev host controls starting/stopping the flutter-auto process when runtime=profile
install -D -m0644 ${WORKDIR}/gallery_on_bg-profile.json ${D}${datadir}/flutter/default.json
}
FILES:${PN} += "\
${systemd_user_unitdir} \
${datadir} \
"
|