From: Philipp Zabel Date: Wed, 14 Dec 2005 10:18:08 +0000 (+0000) Subject: libcontactsdb: add libcontactsdb, needed by gpe-contacts cvs X-Git-Tag: Release-2010-05/1~9453^2~2928 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84f01eb15f96be80044e0b13f86f95f585ebf53a;p=openembedded.git libcontactsdb: add libcontactsdb, needed by gpe-contacts cvs --- diff --git a/packages/libcontactsdb/.mtn2git_empty b/packages/libcontactsdb/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 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 +}