From: Michael Lauer Date: Sun, 19 Aug 2007 17:46:38 +0000 (+0000) Subject: gst-plugin-pulse: bypass libtool install (bogus for plugins) X-Git-Tag: Release-2010-05/1~8891^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c62eb1ad25fa4e14d02e14e60f765e18652483c;p=openembedded.git gst-plugin-pulse: bypass libtool install (bogus for plugins) --- 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" +