diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-22 15:08:42 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-22 15:08:42 +0000 |
commit | 36b472e7c1c0f948e9ab364399203daf3139c5d6 (patch) | |
tree | 3f4a84904fbfe3cc89a0d0d5c95aae993de5585f /packages/contacts/contacts_0.3.bb | |
parent | d3496eaadf50d896a6fd89fed51a4f6a50e508f6 (diff) |
contacts: update to 0.3, drop older (from poky)
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" + |