diff options
author | Ross Burton <ross@openedhand.com> | 2007-08-03 15:21:57 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-08-03 15:21:57 +0000 |
commit | 205d909071c5f4f7f681757bba0078d664bf61c3 (patch) | |
tree | 6384eb3011ce138a67c1e247f0f23bc128fecaab /meta/packages/gstreamer/gstreamer_0.10.14.bb | |
parent | 113bb6c6cd94c86cebd5f140d496d7374cc57317 (diff) | |
download | poky-205d909071c5f4f7f681757bba0078d664bf61c3.tar.gz |
Upgrade gstreamer and gst-plugins-base to hot new releases
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2354 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gstreamer/gstreamer_0.10.14.bb')
-rw-r--r-- | meta/packages/gstreamer/gstreamer_0.10.14.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/packages/gstreamer/gstreamer_0.10.14.bb b/meta/packages/gstreamer/gstreamer_0.10.14.bb new file mode 100644 index 0000000000..39aa0314cf --- /dev/null +++ b/meta/packages/gstreamer/gstreamer_0.10.14.bb | |||
@@ -0,0 +1,33 @@ | |||
1 | DESCRIPTION = "GStreamer is a multimedia framework for encoding and decoding video and sound. \ | ||
2 | It supports a wide range of formats including mp3, ogg, avi, mpeg and quicktime." | ||
3 | SECTION = "multimedia" | ||
4 | PRIORITY = "optional" | ||
5 | LICENSE = "LGPL" | ||
6 | HOMEPAGE = "http://www.gstreamer.net/" | ||
7 | DEPENDS = "glib-2.0 gettext-native libxml2 bison-native flex-native" | ||
8 | |||
9 | inherit autotools pkgconfig | ||
10 | |||
11 | SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2 \ | ||
12 | file://gst-inspect-check-error.patch;patch=1" | ||
13 | # file://gstregistrybinary.c \ | ||
14 | # file://gstregistrybinary.h \ | ||
15 | # file://gstreamer-0.9-binary-registry.patch;patch=1" | ||
16 | EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no --disable-examples --disable-tests --disable-valgrind --disable-debug" | ||
17 | |||
18 | #do_compile_prepend () { | ||
19 | # mv ${WORKDIR}/gstregistrybinary.[ch] ${S}/gst/ | ||
20 | #} | ||
21 | |||
22 | do_stage() { | ||
23 | oe_runmake install prefix=${STAGING_DIR} \ | ||
24 | bindir=${STAGING_BINDIR} \ | ||
25 | includedir=${STAGING_INCDIR} \ | ||
26 | libdir=${STAGING_LIBDIR} \ | ||
27 | datadir=${STAGING_DATADIR} \ | ||
28 | mandir=${STAGING_DIR}/share/man | ||
29 | } | ||
30 | |||
31 | FILES_${PN} += " ${libdir}/gstreamer-0.10/*.so" | ||
32 | FILES_${PN}-dev += " ${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a" | ||
33 | |||