blob: fafae298b46e4c057b02736535f8b6d16ba41b06 (
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
|
SUMMARY = "The software for Flutter Demo platform of AGL IVI profile"
DESCRIPTION = "A set of packages for AGL Flutter Demo Platform"
LICENSE = "MIT"
inherit packagegroup
PROVIDES = "${PACKAGES}"
PACKAGES = "\
packagegroup-agl-demo-platform-flutter \
"
RDEPENDS:${PN} += "\
packagegroup-agl-image-ivi \
packagegroup-agl-profile-graphical-qt5 \
packagegroup-agl-demo \
"
AGL_FLUTTER_RUNTIME ?= "runtimerelease"
AGL_APPS = " \
flutter-dashboard-${AGL_FLUTTER_RUNTIME} \
flutter-hvac-${AGL_FLUTTER_RUNTIME} \
ondemandnavi \
settings \
mediaplayer \
messaging \
phone \
radio \
"
RDEPENDS:${PN}:append = " \
agl-compositor \
flutter-auto-${AGL_FLUTTER_RUNTIME} \
flutter-homescreen-${AGL_FLUTTER_RUNTIME} \
qtquickcontrols2-agl \
qtquickcontrols2-agl-style \
${@bb.utils.contains('DISTRO_FEATURES', 'agl-devel', 'unzip mpc' , '', d)} \
${AGL_APPS} \
psplash-portrait-config \
"
|