diff options
Diffstat (limited to 'packages/pimlico/contacts_svn.bb')
-rw-r--r-- | packages/pimlico/contacts_svn.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/pimlico/contacts_svn.bb b/packages/pimlico/contacts_svn.bb new file mode 100644 index 0000000000..bffa1832fd --- /dev/null +++ b/packages/pimlico/contacts_svn.bb @@ -0,0 +1,29 @@ +LICENSE = "LGPL" +SECTION = "x11" +DEPENDS = "glib-2.0 gtk+ libglade eds-dbus gnome-vfs" +RDEPENDS = "gnome-vfs-plugin-file" +RRECOMMENDS = "gnome-vfs-plugin-http" +DESCRIPTION = "Contacts is an address-book application." +PR = "r5" + +PV = "0.1+svn${SRCDATE}" + +SRC_URI = "svn://svn.o-hand.com/repos/${PN};module=trunk;proto=http \ + file://stock_contact.png \ + file://stock_person.png" + +inherit autotools pkgconfig + +S = "${WORKDIR}/trunk" + +EXTRA_OECONF = "--enable-gnome-vfs" + +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" + |