blob: 392ca99a358c056980c1f6c16e4811bb627b62e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "GNOME keyboard library"
LICENSE = "LGPL"
SECTION = "x11/gnome/libs"
DEPENDS = "gconf libgnome libxklavier"
inherit gnome
do_configure_append() {
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
find ${S} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
}
do_stage() {
autotools_stage_all
}
|