blob: 879248cafefe313a0ad2565456a93b339ec11e8a (
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
|
SUMMARY = "The software for AGL Cluster Demo Qtwayland Compositor"
DESCRIPTION = "A set of packages belong to AGL Cluster Demo Qtwayland Compositor"
LICENSE = "MIT"
inherit packagegroup
PACKAGES = "\
packagegroup-agl-cluster-demo-qtcompositor \
"
ALLOW_EMPTY_${PN} = "1"
RDEPENDS_${PN} += "\
packagegroup-agl-profile-cluster-qtcompositor \
"
AGL_SERVICE = " \
agl-service-bluetooth \
agl-service-can-low-level \
agl-service-data-persistence \
agl-service-gps \
agl-service-network \
agl-service-unicens \
agl-service-hvac \
agl-service-nfc \
agl-service-identity-agent \
"
SMARTDEVICELINK = "${@bb.utils.contains('DISTRO_FEATURES', 'agl-sdl', \
'sdl-core', '', d)}"
# fonts
TTF_FONTS = " \
ttf-bitstream-vera \
ttf-dejavu-sans \
ttf-dejavu-sans-mono \
ttf-dejavu-serif \
"
AGL_APPS = " \
cluster-gauges-qtcompositor \
"
RDEPENDS_${PN}_append = " \
libva-utils \
linux-firmware-ralink \
connman \
connman-client \
connman-tools \
cluster-connman-conf \
iproute2 \
dhcp-client \
can-utils \
most \
${TTF_FONTS} \
${AGL_SERVICE} \
${AGL_APPS} \
${SMARTDEVICELINK} \
"
|