diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-22 15:20:40 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-22 15:20:40 +0000 |
commit | b240c3833bba21fb66e1cd4c60902d73f2937846 (patch) | |
tree | 5721d3efbb262eb5a9c2ef61e2f23e17f0156f13 /packages/contacts/contacts_0.3.bb | |
parent | 1dae69bdb0d41e96655d849de94b85d4fd6ccfda (diff) | |
parent | a56af0e28abb819387d23c156ca5312f2d13984f (diff) |
merge of '59341f601c1006b473e6599023cd3870fec6ff99'
and 'eb5211066eab924478ebbdc53748a8615e528b02'
Diffstat (limited to 'packages/contacts/contacts_0.3.bb')
-rw-r--r-- | packages/contacts/contacts_0.3.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/contacts/contacts_0.3.bb b/packages/contacts/contacts_0.3.bb new file mode 100644 index 0000000000..799698b7a0 --- /dev/null +++ b/packages/contacts/contacts_0.3.bb @@ -0,0 +1,25 @@ +LICENSE = "LGPL" +SECTION = "x11" +DEPENDS = "glib-2.0 gtk+ eds-dbus" +RDEPENDS = "libedata-book" +DESCRIPTION = "Contacts is an address-book application." + +PR = "r1" + +SRC_URI = "http://projects.o-hand.com/sources/${PN}/${PN}-${PV}.tar.gz \ + file://stock_contact.png \ + file://stock_person.png" + +inherit autotools pkgconfig + +S = "${WORKDIR}/${PN}-${PV}" + +do_install_append () { + install -d ${D}/${datadir}/pixmaps + install -m 0644 ${WORKDIR}/stock_contact.png ${D}/${datadir}/pixmaps + install -m 0644 ${WORKDIR}/stock_person.png ${D}/${datadir}/pixmaps +} + +FILES_${PN} += "${datadir}/pixmaps/stock_contact.png \ + ${datadir}/pixmaps/stock_person.png" + |