summaryrefslogtreecommitdiffstats
path: root/meta/packages/pimlico/contacts_0.3.bb
blob: 799698b7a097f140c97dd927b0ae06ceac8b95d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"