blob: 58bb811177e9f26d785769937ef98cd848babbd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Common X11 Keyboard layouts"
LICENSE = "MIT"
DEPENDS = "intltool xkbcomp-native"
RDEPENDS = "xkbcomp"
PR = "r3"
SRC_URI = "http://xlibs.freedesktop.org/xkbdesc/xkeyboard-config-${PV}.tar.bz2 \
file://abnt2-fixes.patch;patch=1"
inherit autotools
do_stage() {
autotools_stage_all
}
do_install_append () {
install -d ${D}/usr/share/X11/xkb/compiled
cd ${D}${datadir}/X11/xkb/rules && ln -sf base xorg
}
FILES_${PN} += "${datadir}/X11/xkb"
|