diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2005-12-14 10:18:08 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-12-14 10:18:08 +0000 |
commit | 84f01eb15f96be80044e0b13f86f95f585ebf53a (patch) | |
tree | 417b9230c292fd2e9773e7484bc8d38509ac4923 /packages | |
parent | 70f524c2aa86cc25b47e625f91e49b799cdd282a (diff) |
libcontactsdb: add libcontactsdb, needed by gpe-contacts cvs
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 +} |