diff options
Diffstat (limited to 'meta/packages/python/python-gst_0.10.8.bb')
-rw-r--r-- | meta/packages/python/python-gst_0.10.8.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/packages/python/python-gst_0.10.8.bb b/meta/packages/python/python-gst_0.10.8.bb new file mode 100644 index 0000000000..224d24b59a --- /dev/null +++ b/meta/packages/python/python-gst_0.10.8.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | DESCRIPTION = "Python Gstreamer bindings" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "LGPL" | ||
4 | DEPENDS = "gstreamer gst-plugins-base python-pygobject" | ||
5 | PR = "ml1" | ||
6 | |||
7 | SRC_URI = "http://gstreamer.freedesktop.org/src/gst-python/gst-python-${PV}.tar.bz2 \ | ||
8 | file://python-path.patch;patch=1" | ||
9 | S = "${WORKDIR}/gst-python-${PV}" | ||
10 | |||
11 | inherit autotools distutils-base pkgconfig | ||
12 | |||
13 | EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../" | ||
14 | |||
15 | do_configure_prepend() { | ||
16 | install -d ${S}/m4 | ||
17 | install -m 0644 ${S}/common/m4/*.m4 ${S}/m4/ | ||
18 | } | ||
19 | |||
20 | do_stage() { | ||
21 | autotools_stage_all | ||
22 | } | ||
23 | |||
24 | FILES_${PN} += "${datadir}/gst-python" | ||
25 | FILES_${PN}-dev += "${datadir}/gst-python/0.10/defs" | ||
26 | FILES_${PN}-dbg += "${libdir}/${PYTHON_DIR}/site-packages/gst-0.10/gst/.debug/" | ||