diff options
-rw-r--r-- | packages/libschedule/libschedule_0.15.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/libschedule/libschedule_0.15.bb b/packages/libschedule/libschedule_0.15.bb new file mode 100644 index 0000000000..e186262cde --- /dev/null +++ b/packages/libschedule/libschedule_0.15.bb @@ -0,0 +1,21 @@ +LICENSE = "LGPL" +PR = "r1" +DESCRIPTION = "RTC alarm handling library for GPE" +SECTION = "gpe/libs" +PRIORITY = "optional" +MAINTAINER = "Philip Blundell <pb@handhelds.org>" +DEPENDS = "glib-2.0 sqlite" + +inherit autotools libtool pkgconfig gpe + +headers = "schedule.h" + +do_stage () { + oe_libinstall -so libschedule ${STAGING_LIBDIR} + + mkdir -p ${STAGING_INCDIR}/gpe + for h in ${headers}; do + install -m 0644 ${S}/gpe/$h ${STAGING_INCDIR}/gpe/$h + done +} + |