blob: 812c354ad09546ab4d2359109f66c4e432b54c98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require gtk+_2.12.11.bb
inherit native
DEPENDS += "atk-native pango-native cairo-native"
PROVIDES = "gtk+-native"
EXTRA_OECONF += "--without-libtiff --disable-modules"
PR = "r2"
do_install_append() {
# this tool is required by gnome-keyring 2.26.0 to get built
# it is written in Python and use only Python xml
install -d ${STAGING_BINDIR_NATIVE}
install -m 0755 ${S}/gtk/gtk-builder-convert ${STAGING_BINDIR_NATIVE}
}
|