diff options
author | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-10-29 08:17:48 +0100 |
---|---|---|
committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-10-29 08:17:48 +0100 |
commit | 31c440b89cf2f9002bc8df2f69a34b4948f0d0de (patch) | |
tree | 1857f3bafea059cef218aab8247903a0a7ae1215 /recipes/gnome/goffice_0.7.14.bb | |
parent | 8452d20bc548c6566bb10bc3b7c87c3c49da1030 (diff) | |
parent | e7c38fbecd76844bb5def3f32717f8f21df7c90f (diff) |
Merge branch 'org.openembedded.dev' of ssh://git@git.openembedded.net/openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/gnome/goffice_0.7.14.bb')
-rw-r--r-- | recipes/gnome/goffice_0.7.14.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes/gnome/goffice_0.7.14.bb b/recipes/gnome/goffice_0.7.14.bb new file mode 100644 index 0000000000..9fff0b4cfe --- /dev/null +++ b/recipes/gnome/goffice_0.7.14.bb @@ -0,0 +1,21 @@ +DESCRIPTION="Gnome Office Library" +LICENSE="GPLv2" + +DEPENDS="glib-2.0 gtk+ pango cairo libgnomeprint libgsf libglade libpcre libxml2 libart-lgpl" + +FILES_${PN}-dbg += "${libdir}/goffice/${PV}/plugins/*/.debug" + +inherit gnome pkgconfig + +do_stage() { + autotools_stage_all +} + +PACKAGES_DYNAMIC = "goffice-plugin-*" + +python populate_packages_prepend () { + goffice_libdir = bb.data.expand('${libdir}/goffice/${PV}/plugins', d) + + do_split_packages(d, goffice_libdir, '(.*)', 'goffice-plugin-%s', 'Goffice plugin for %s', allow_dirs=True) +} + |