blob: 033877a55cb77823bec79ae1e13e3a25857750b9 (
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
|
DESCRIPTION = "Helper lib for keyboard management"
LICENSE = "LGPL"
PR = "r1"
DEPENDS = "xkbcomp gtk+"
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_compile_append() {
sed -i -e s:${STAGING_DIR_TARGET}::g \
-e s:/${TARGET_SYS}::g \
libxklavier.pc
}
do_stage() {
autotools_stage_all
}
SRC_URI[archive.md5sum] = "ee167645becd11309d64c6ff3a1600ff"
SRC_URI[archive.sha256sum] = "477b72ba4968e9a49c78e08a5335df7f71f71d787222224345f33f0b888f801b"
|