diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-08-19 17:46:38 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-08-19 17:46:38 +0000 |
commit | 3c62eb1ad25fa4e14d02e14e60f765e18652483c (patch) | |
tree | d6c0e16ee9f6d6abd88075efb3023cbb822d9d91 /packages/gstreamer | |
parent | 8e321d4b806425c3e05552b771b9e21a5ee4fbe2 (diff) |
gst-plugin-pulse: bypass libtool install (bogus for plugins)
Diffstat (limited to 'packages/gstreamer')
-rw-r--r-- | packages/gstreamer/gst-plugin-pulse_0.9.4.bb | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/packages/gstreamer/gst-plugin-pulse_0.9.4.bb b/packages/gstreamer/gst-plugin-pulse_0.9.4.bb index f4dd894636..f88cb66ff4 100644 --- a/packages/gstreamer/gst-plugin-pulse_0.9.4.bb +++ b/packages/gstreamer/gst-plugin-pulse_0.9.4.bb @@ -2,6 +2,7 @@ DESCRIPTION = "GStreamer plugin for using pulse audio as sink and source" HOMEPAGE = "http://0pointer.de/lennart/projects/gst-pulse/" LICENSE = "GPL" DEPENDS = "gstreamer pulseaudio" +PR = "r1" SRC_URI = "http://0pointer.de/lennart/projects/gst-pulse/gst-pulse-${PV}.tar.gz" S = "${WORKDIR}/gst-pulse-${PV}" @@ -9,13 +10,19 @@ S = "${WORKDIR}/gst-pulse-${PV}" inherit autotools EXTRA_OECONF = "--disable-lynx" -EXTRA_OEMAKE = "-e" +GST_LIBV = 0.10 + +do_install() { + install -d ${D}${libdir}/gstreamer-${GST_LIBV}/ + install -m 0755 src/.libs/libgstpulse.so ${D}${libdir}/gstreamer-${GST_LIBV} +} export GST_MODDIR=${libdir}/gstreamer-0.10 -FILES_${PN} = "${libdir}/gstreamer-0.10/libgstpulse.so.*" +FILES_${PN} = "${libdir}/gstreamer-0.10/libgstpulse.so" FILES_${PN}-dev = "\ ${libdir}/gstreamer-0.10/libgstpulse.a \ ${libdir}/gstreamer-0.10/libgstpulse.la \ - ${libdir}/gstreamer-0.10/libgstpulse.so" + ${libdir}/gstreamer-0.10/libgstpulse.so*" FILES_${PN}-dbg = "${libdir}/gstreamer-0.10/.debug" + |