blob: dc60e9e18cc5549480b8c010086a3c7637a9b8c9 (
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
|
SUMMARY = "The middlewares for AGL IVI profile"
DESCRIPTION = "The set of packages required by Multimedia Subsystem"
LICENSE = "MIT"
inherit packagegroup
PACKAGES = "\
packagegroup-agl-ivi-multimedia \
"
ALLOW_EMPTY:${PN} = "1"
RDEPENDS:${PN} += "\
gstreamer1.0-plugins-base-meta \
gstreamer1.0-plugins-good-meta \
mpd \
"
# for now: enable here for the AGL IVI demo (image-ivi and demo-platform)
# tbd: change based on usage in profiles
PIPEWIRE = "\
${@bb.utils.contains('DISTRO_FEATURES', 'pipewire', 'packagegroup-pipewire', '', d)}\
"
RDEPENDS:${PN} += "\
${PIPEWIRE} \
"
|