blob: d639495284005686799c6f60eba2da3c07582b6a (
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
|
SUMMARY = "The software for demo platform of AGL cluster profile"
DESCRIPTION = "A set of packages belong to AGL Cluster Demo Platform"
LICENSE = "MIT"
inherit packagegroup
PACKAGES = "\
packagegroup-agl-cluster-demo-platform \
"
ALLOW_EMPTY_${PN} = "1"
RDEPENDS_${PN} += "\
packagegroup-agl-profile-cluster-qt5 \
"
# fonts
TTF_FONTS = " \
ttf-bitstream-vera \
ttf-dejavu-sans \
ttf-dejavu-sans-mono \
ttf-dejavu-serif \
source-han-sans-cn-fonts \
source-han-sans-jp-fonts \
source-han-sans-tw-fonts \
"
AGL_APPS = " \
cluster-dashboard \
cluster-receiver \
"
AGL_APIS = " \
agl-service-windowmanager \
"
RDEPENDS_${PN}_append = " \
wayland-ivi-extension \
cluster-windowmanager-conf \
hmi-debug \
libva-utils \
linux-firmware-ralink \
connman \
connman-client \
connman-tools \
cluster-connman-conf \
iproute2 \
dhcp-client \
${TTF_FONTS} \
${AGL_APPS} \
${AGL_APIS} \
"
|