mirror of
https://git.yoctoproject.org/poky
synced 2026-09-12 15:49:36 +02:00
Gst-plugins get 2 extra packages:
${PN}-apps: helper apps in ${bindir}
${PN}-meta: meta package that will drag in all plugins, libs and apps ${PN} generates
And all libs are split out and run through debian style renaming if enabled.
The packaging include was split out to be reused by external plugins (e.g. gst-plugin-gl, gst-fluendo-*).
The new package list looks like:
libgstapp-0.10-0_0.10.32-r1_armv7a.ipk
libgstfft-0.10-0_0.10.32-r1_armv7a.ipk
[..]
gst-plugins-base-videorate_0.10.32-r1_armv7a.ipk
gst-plugins-base-videoscale_0.10.32-r1_armv7a.ipk
[..]
gst-plugins-base-meta_0.10.32-r1_armv7a.ipk
[..]
gst-plugins-base-apps_0.10.32-r1_armv7a.ipk
(From OE-Core rev: 4bfd595934c1f6839ae848b09ecca439d92bf014)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
819 B
PHP
29 lines
819 B
PHP
DESCRIPTION = "Plugins for GStreamer"
|
|
HOMEPAGE = "http://gstreamer.freedesktop.org/"
|
|
BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
|
|
SECTION = "multimedia"
|
|
DEPENDS = "gstreamer"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
FILESPATH =. "${FILE_DIRNAME}/gst-plugins:"
|
|
|
|
SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2"
|
|
|
|
EXTRA_OECONF = "--disable-valgrind --disable-debug --disable-examples "
|
|
|
|
acpaths = "-I ${S}/common/m4 -I ${S}/m4"
|
|
|
|
# orc.m4 calls pkg-config ----variable=orcc orc-0.4 to get the path to orcc,
|
|
# resulting in /usr/bin/orcc. Force it to use the staged orcc.
|
|
do_configure_append() {
|
|
for i in $(find ${S} -name "Makefile") ; do
|
|
sed -i -e s:${bindir}/orcc:${STAGING_BINDIR_NATIVE}/orcc:g $i
|
|
done
|
|
}
|
|
|
|
require gst-plugins-package.inc
|
|
|
|
PACKAGES_DYNAMIC = "${PN}-*"
|
|
|