diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/libcontactsdb/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/libcontactsdb/libcontactsdb_cvs.bb | 26 |
2 files changed, 26 insertions, 0 deletions
diff --git a/packages/libcontactsdb/.mtn2git_empty b/packages/libcontactsdb/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/libcontactsdb/.mtn2git_empty diff --git a/packages/libcontactsdb/libcontactsdb_cvs.bb b/packages/libcontactsdb/libcontactsdb_cvs.bb new file mode 100644 index 0000000000..f2878411cb --- /dev/null +++ b/packages/libcontactsdb/libcontactsdb_cvs.bb @@ -0,0 +1,26 @@ +LICENSE = "GPL" +DESCRIPTION = "Database access library for GPE contacts" +SECTION = "gpe/libs" +PRIORITY = "optional" +DEPENDS = "libgpewidget libgpepimc sqlite" + +LICENSE = "GPL" + +S = "${WORKDIR}/${PN}" +PV = "0.1+cvs${CVSDATE}" +PR = "r0" + +inherit autotools gpe pkgconfig + +SRC_URI = "${HANDHELDS_CVS};module=gpe/base/${PN}" + +headers = "contacts-db.h" + +do_stage () { + oe_libinstall -so libcontactsdb ${STAGING_LIBDIR} + + mkdir -p ${STAGING_INCDIR}/gpe + for h in ${headers}; do + install -m 0644 ${S}/gpe/$h ${STAGING_INCDIR}/gpe/$h + done +} |