diff options
author | Phil Blundell <philb@gnu.org> | 2004-11-13 00:12:33 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-11-13 00:12:33 +0000 |
commit | 81ef4f4c57d375fef7727bab14d2fef5c7a77012 (patch) | |
tree | ddb8ee4bded2f5b720d65f1486587e89d2fd8db5 /libgpewidget/libgpewidget_0.89.oe | |
parent | 9fcdac99ab63d5a5bf3276fa36dbc0c4b6efc93a (diff) |
add LICENSE
BKrev: 41955171-LQlXfjWLHDGowg4rlKs1w
Diffstat (limited to 'libgpewidget/libgpewidget_0.89.oe')
-rw-r--r-- | libgpewidget/libgpewidget_0.89.oe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libgpewidget/libgpewidget_0.89.oe b/libgpewidget/libgpewidget_0.89.oe index e69de29bb2..5567b00951 100644 --- a/libgpewidget/libgpewidget_0.89.oe +++ b/libgpewidget/libgpewidget_0.89.oe @@ -0,0 +1,25 @@ +LICENSE = "LGPL" +PR = "r0" +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 + +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 +} + |