diff options
author | Phil Blundell <philb@gnu.org> | 2004-07-23 15:13:22 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-07-23 15:13:22 +0000 |
commit | 073b0623b797dcc5fb667df77bb4209615817f11 (patch) | |
tree | 4708b219ef8c3b4260ac2dbc6d0a0d43c20fc03d /libgpewidget/libgpewidget_0.86.oe | |
parent | 758581c22f9b1038a1b0bc4278574fcce6c9558d (diff) |
call install_devel also
BKrev: 41012b127cc824r5Qmrj7FfbPIQrmA
Diffstat (limited to 'libgpewidget/libgpewidget_0.86.oe')
-rw-r--r-- | libgpewidget/libgpewidget_0.86.oe | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libgpewidget/libgpewidget_0.86.oe b/libgpewidget/libgpewidget_0.86.oe index e69de29bb2..5cdea9efd2 100644 --- a/libgpewidget/libgpewidget_0.86.oe +++ b/libgpewidget/libgpewidget_0.86.oe @@ -0,0 +1,26 @@ +PR = "r1" +DESCRIPTION = "libgpewidget contains a collection of widgets and other common code shared by many GPE applications." +SECTION = "gpe/libs" +PRIORITY = "optional" +MAINTAINER = "Philip Blundell <pb@handhelds.org>" +DEPENDS = "gtk+ cairo libxrender" + +inherit pkgconfig gpe + +SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz" + +headers = "init.h render.h errorbox.h smallbox.h pixmaps.h gpetimesel.h gtkdatecombo.h dirbrowser.h stylus.h picturebutton.h popup_menu.h spacing.h translabel.h question.h windows.h gpe-iconlist.h gtksimplemenu.h gpewindowlist.h tray.h popup.h gpeiconlistview.h gpehelp.h gpeiconlistitem.h gpeclockface.h" + +do_stage () { + oe_libinstall -so libgpewidget ${STAGING_LIBDIR} + + mkdir -p ${STAGING_INCDIR}/gpe + for h in ${headers}; do + install -m 0644 ${S}/gpe/$h ${STAGING_INCDIR}/gpe/$h + done +} + +do_install_append () { + oe_runmake PREFIX='${prefix}' DESTDIR='${D}' install-devel +} + |