diff options
author | Koen Kooi <koen@openembedded.org> | 2010-03-17 10:21:38 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-17 10:21:38 +0100 |
commit | ee29421cc87d08bf9a5b67922b4e4241dd7cafe7 (patch) | |
tree | b12149e82e7702be2431ec0954cf7ba8c02acad3 /recipes/gstreamer/gst-ffmpeg_0.10.10.bb | |
parent | 10ca2773f9549a26f42e52c1030a178831a06a05 (diff) |
gst-ffmpeg: add 0.10.10, needed for newer ffmpeg_svn.bb
Diffstat (limited to 'recipes/gstreamer/gst-ffmpeg_0.10.10.bb')
-rw-r--r-- | recipes/gstreamer/gst-ffmpeg_0.10.10.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes/gstreamer/gst-ffmpeg_0.10.10.bb b/recipes/gstreamer/gst-ffmpeg_0.10.10.bb new file mode 100644 index 0000000000..bf3206f592 --- /dev/null +++ b/recipes/gstreamer/gst-ffmpeg_0.10.10.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "FFmpeg-based GStreamer plug-in" +SECTION = "multimedia" +PRIORITY = "optional" +LICENSE = "LGPL" +HOMEPAGE = "http://www.gstreamer.net/" +DEPENDS = "ffmpeg gstreamer gst-plugins-base zlib" + +inherit autotools pkgconfig + +SRC_URI = "http://gstreamer.freedesktop.org/src/${PN}/${PN}-${PV}.tar.bz2;name=archive \ + file://lower-rank.diff;patch=1 \ +" +SRC_URI[archive.md5sum] = "447292deff5f3748444e6a5fba41da29" +SRC_URI[archive.sha256sum] = "697114483444a0a469028857a1d58145c99e6f5d2cd7edd8cb04cdc3fc72ad94" + +FILES_${PN} += "${libdir}/gstreamer-0.10/*.so" +FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug" +FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a" + +EXTRA_OECONF = " --with-system-ffmpeg " + +# We do this because the install program is called with -s which causes it to +# call "strip" and it then mangles cross compiled stuff.. +PATH_prepend="${CROSS_DIR}/${TARGET_SYS}/bin:" + +# Hack to get STAGING_LIBDIR into the linker path when building ffmpeg +CC = "${CCACHE} ${HOST_PREFIX}gcc ${TARGET_CC_ARCH} -L${STAGING_LIBDIR}" + |