summaryrefslogtreecommitdiffstats
path: root/recipes/gnome/gnome-keyring_2.24.1.bb
blob: 9d2b5234a5fcdfa558e40f729e8b2fcd82573252 (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
26
27
LICENSE = "GPL"
SECTION = "x11/gnome"

inherit autotools gnome pkgconfig

PR = "r1"

DEPENDS = "gtk+ libtasn1 libgcrypt gconf"

EXTRA_OECONF = "--disable-gtk-doc"

SRC_URI += "file://tasn.m4 file://org.gnome.keyring.service"

do_configure_prepend() {
	cp ${WORKDIR}/tasn.m4 acinclude.m4
}

do_install_append () {
	install -d ${D}${datadir}/dbus-1/services
	install -m 0644 ${WORKDIR}/org.gnome.keyring.service ${D}${datadir}/dbus-1/services
}

FILES_${PN} += "${datadir}/dbus-1/services"

do_stage() {
        autotools_stage_all
}