Files
openwrt_yocto/meta-openembedded/meta-gnome/recipes-graphics/clutter/clutter-gst-3.0.inc
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

24 lines
1.0 KiB
PHP

SUMMARY = "GStreamer integration library for Clutter"
DESCRIPTION = "Clutter-Gst is an integration library for using GStreamer with Clutter. \
It provides a GStreamer sink to upload frames to GL and an actor that \
implements the ClutterGstPlayer interface using playbin."
HOMEPAGE = "http://www.clutter-project.org/"
BUGTRACKER = "https://gitlab.gnome.org/GNOME/clutter-gst/-/issues"
LICENSE = "LGPL-2.0-or-later"
inherit clutter features_check upstream-version-is-even gobject-introspection
# depends on clutter-1.0 which depends on cogl-1.0
REQUIRED_DISTRO_FEATURES ?= "opengl"
export GST_PLUGIN_SCANNER_1_0="${S}/gst-plugin-scanner-dummy"
SRC_URI += "file://0001-Install-example-binary-needed-for-core-image-clutter.patch"
DEPENDS = "gstreamer1.0-plugins-base gstreamer1.0-plugins-bad clutter-1.0 libgudev"
RDEPENDS:${PN} += "gstreamer1.0-meta-base"
PACKAGES =+ "${PN}-examples"
FILES:${PN} += "${libdir}/gstreamer-1.0/lib*.so"
FILES:${PN}-dev += "${libdir}/gstreamer-1.0/*.la"
FILES:${PN}-examples = "${bindir}/video-player ${bindir}/video-sink"