blob: 176bfefd9aea4f5e5f837364b0992f4e371dbed3 (
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
|
SUMMARY = "The software for DEMO platform of AGL HTML5 profile"
DESCRIPTION = "Packages required to demo the HTML5 profile and sample web apps"
LICENSE = "MIT"
inherit packagegroup
PACKAGES = "\
packagegroup-agl-demo-platform-html5 \
"
ALLOW_EMPTY_${PN} = "1"
RDEPENDS_${PN} += "\
packagegroup-agl-image-ivi \
packagegroup-agl-profile-graphical-html5 \
packagegroup-agl-demo \
"
AGL_APPS = " \
html5-homescreen \
html5-launcher \
html5-hvac \
html5-settings \
html5-mixer \
html5-mediaplayer \
html5-dashboard \
html5-background \
"
RDEPENDS_${PN}_append = " \
${AGL_APPS} \
"
|