1SUMMARY = "GStreamer examples (including gtk-play, gst-play)" 2DESCRIPTION = "GStreamer example applications" 3HOMEPAGE = "https://gitlab.freedesktop.org/gstreamer/gst-examples" 4BUGTRACKER = "https://gitlab.freedesktop.org/gstreamer/gst-examples/-/issues" 5LICENSE = "LGPL-2.0-or-later" 6LIC_FILES_CHKSUM = "file://playback/player/gtk/gtk-play.c;beginline=1;endline=20;md5=f8c72dae3d36823ec716a9ebcae593b9" 7 8DEPENDS = "glib-2.0 gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad gtk+3 libsoup-2.4 json-glib glib-2.0-native" 9 10SRC_URI = "git://gitlab.freedesktop.org/gstreamer/gst-examples.git;protocol=https;branch=1.18 \ 11 file://0001-Make-player-examples-installable.patch \ 12 file://gst-player.desktop \ 13 " 14 15SRCREV = "70e4fcf4fc8ae19641aa990de5f37d758cdfcea4" 16 17S = "${WORKDIR}/git" 18 19inherit meson pkgconfig features_check 20 21UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.(\d*[02468])+(\.\d+)+)" 22 23ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" 24 25do_install:append() { 26 install -m 0644 -D ${WORKDIR}/gst-player.desktop ${D}${datadir}/applications/gst-player.desktop 27} 28 29RDEPENDS:${PN} = "gstreamer1.0-plugins-base-playback" 30RRECOMMENDS:${PN} = "gstreamer1.0-plugins-base-meta \ 31 gstreamer1.0-plugins-good-meta \ 32 gstreamer1.0-plugins-bad-meta \ 33 ${@bb.utils.contains("LICENSE_FLAGS_ACCEPTED", "commercial", "gstreamer1.0-libav", "", d)} \ 34 ${@bb.utils.contains("LICENSE_FLAGS_ACCEPTED", "commercial", "gstreamer1.0-plugins-ugly-meta", "", d)}" 35RPROVIDES:${PN} += "gst-player gst-player-bin" 36