blob: 31143fcc15f25799b003c8d202e3ce3c91962fa3 (
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
|
require cornucopia.inc
# Seems like bitbake cannot find dynamicaly created package names in
# gst-plugins.inc. Image creation usually fail with missing RDEPENDS_${PN} for
# gst-plugin-mad gst-plugin-flac gst-plugin-wavparse gst-plugin-sid
# so add recipes needed for runtime dependencies manually here
DEPENDS += "gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugins-ugly', d)}"
SRCREV = "${FSO_CORNUCOPIA_SRCREV}"
PV = "0.0.1+gitr${SRCPV}"
PR = "${INC_PR}.4"
PE = "1"
RDEPENDS_${PN} += "\
#gst-plugins-base
gst-plugin-volume \
gst-plugin-alsa \
"
RRECOMMENDS_${PN} += "\
#gst-plugins-base
gst-plugin-ogg \
gst-plugin-audioconvert \
#gst-plugins-good
gst-plugin-flac \
gst-plugin-wavparse \
gst-plugin-souphttpsrc \
#gst-plugins-bad
gst-plugin-ivorbis \
gst-plugin-mms \
gst-plugin-modplug \
#gst-plugins-ugly
${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugin-mad', d)} \
${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugin-sid', d)} \
"
|