blob: ba14e8848c645d1124695e91c6cbb8751a72f226 (
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
28
29
30
31
|
DESCRIPTION = "configuation database system"
LICENSE = "LGPLv2.1"
LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
SECTION = "x11/gnome"
inherit gnome
SRC_URI[archive.md5sum] = "d784f8afca04473d194a72047595c28e"
SRC_URI[archive.sha256sum] = "e2103e8207744903790e9fac6427fa394bb485a0c7f4e0d03b0fb43268c34f33"
DEPENDS = "glib-2.0 gtk+3"
inherit vala
PR = "r1"
PACKAGES =+ "dconf-editor"
FILES_dconf-editor = "${bindir}/dconf-editor ${datadir}/dconf-editor/"
FILES_${PN} += "${datadir}/dbus-1/ \
${libdir}/gio/modules/*.so \
"
FILES_${PN}-dbg += "${libdir}/gio/modules/.debug/libdconfsettings.so"
pkg_postinst_${PN} () {
if [ -n "$D" ]; then
exit 1
fi
glib-compile-schemas ${datadir}/glib-2.0/schemas
}
|