diff options
author | Koen Kooi <koen@openembedded.org> | 2009-03-02 15:36:02 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-03-02 15:36:02 +0100 |
commit | f32a5e8a24f396acba37e9dfd01a9062cbdabd66 (patch) | |
tree | 827c264fa686ee6e9a8839bbb512caec1e2f5021 /packages/gstreamer/gst-plugins.inc | |
parent | a2426470435b7450ab52387401b2a335cb250663 (diff) |
gstreamer: package libs seperately to account for things moving between -good, -bad, -ugly and -base.
Diffstat (limited to 'packages/gstreamer/gst-plugins.inc')
-rw-r--r-- | packages/gstreamer/gst-plugins.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/gstreamer/gst-plugins.inc b/packages/gstreamer/gst-plugins.inc index c0b15ef38b..3bf29ad3e9 100644 --- a/packages/gstreamer/gst-plugins.inc +++ b/packages/gstreamer/gst-plugins.inc @@ -19,7 +19,9 @@ LIBV = "0.10" python populate_packages_prepend () { gst_libdir = bb.data.expand('${libdir}/gstreamer-${LIBV}', d) postinst = bb.data.getVar('plugin_postinst', d, 1) + glibdir = bb.data.expand('${libdir}', d) + do_split_packages(d, glibdir, '^lib(.*)\.so\.*', 'lib%s', 'gstreamer %s library', extra_depends='', allow_links=True) do_split_packages(d, gst_libdir, '^libgst(.*)\.so$', 'gst-plugin-%s', 'GStreamer plugin for %s', postinst=postinst, extra_depends='') do_split_packages(d, gst_libdir, '^libgst(.*)\.l?a$', 'gst-plugin-%s-dev', 'GStreamer plugin for %s (development files)', extra_depends='') @@ -42,5 +44,10 @@ python populate_packages_prepend () { ALLOW_EMPTY = "1" +PACKAGES += "${PN}-apps" +FILES_${PN}-apps = "${bindir}" + +FILES_${PN} = "" FILES_${PN}-dbg += "${libdir}/gstreamer-${LIBV}/.debug" + |