mirror of
https://github.com/Freescale/meta-freescale-distro.git
synced 2025-10-22 23:13:02 +02:00

Change DESCRIPTION and SUMMARY replacing "Freescale" by "FSL Community" because this is not a official package group provided by Freescale, it is a FSL Community BSP package group provided and supported by community. Signed-off-by: Daiane Angolini <daiane.angolini@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
28 lines
1.1 KiB
BlitzBasic
28 lines
1.1 KiB
BlitzBasic
# Copyright (C) 2014 Freescale Semiconductor
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "Package group used by FSL Community to provide audio, video, and debug \
|
|
GStreamer's plugins (including good and bad ones) with the required hardware \
|
|
acceleration (if supported by the SoC)."
|
|
SUMMARY = "FSL Community package group - GStreamer full"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
|
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
PACKAGE_ARCH_mx6sl = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup
|
|
|
|
RDEPENDS_${PN} = " \
|
|
packagegroup-fsl-gstreamer \
|
|
gst-plugins-base-meta \
|
|
gst-plugins-good-meta \
|
|
gst-plugins-bad-meta \
|
|
${@base_contains('DISTRO_FEATURES', 'opengl', \
|
|
base_contains('DISTRO_FEATURES', 'x11', \
|
|
'gst-plugins-gl', '', d), '', d)} \
|
|
"
|
|
# FIXME: i.MX6SL cannot use mesa for Graphics and it lacks 3D support,
|
|
# so skip it for now.
|
|
RDEPENDS_${PN}_remove_mx6sl = "gst-plugins-gl"
|