blob: 138e451d078efcee4068547b5bd5802c6795405c [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001SUMMARY = "Keyboard configuration database for X Window"
2
3DESCRIPTION = "The non-arch keyboard configuration database for X \
4Window. The goal is to provide the consistent, well-structured, \
5frequently released open source of X keyboard configuration data for X \
6Window System implementations. The project is targeted to XKB-based \
7systems."
8
9HOMEPAGE = "http://freedesktop.org/wiki/Software/XKeyboardConfig"
10BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=xkeyboard-config"
11
12LICENSE = "MIT & MIT-style"
13LIC_FILES_CHKSUM = "file://COPYING;md5=0e7f21ca7db975c63467d2e7624a12f9"
14
Andrew Geissler5a43b432020-06-13 10:46:56 -050015SRC_URI = "${XORG_MIRROR}/individual/data/xkeyboard-config/${BPN}-${PV}.tar.bz2"
Andrew Geissler09036742021-06-25 14:25:14 -050016SRC_URI[sha256sum] = "657fd790d6dcf781cd395de4cf726120a5b0f93ba91dfb2628bcc70ae8b1d3bc"
Andrew Geissler82c905d2020-04-13 13:39:40 -050017
18SECTION = "x11/libs"
19DEPENDS = "util-macros libxslt-native"
20
21EXTRA_OECONF = "--with-xkb-rules-symlink=xorg --disable-runtime-deps"
22
Patrick Williams213cb262021-08-07 19:21:33 -050023FILES:${PN} += "${datadir}/X11/xkb"
Andrew Geissler82c905d2020-04-13 13:39:40 -050024
Andrew Geissler6ce62a22020-11-30 19:58:47 -060025inherit autotools pkgconfig gettext python3native
Andrew Geissler82c905d2020-04-13 13:39:40 -050026
Patrick Williams213cb262021-08-07 19:21:33 -050027do_install:append () {
Andrew Geissler82c905d2020-04-13 13:39:40 -050028 install -d ${D}${datadir}/X11/xkb/compiled
29 cd ${D}${datadir}/X11/xkb/rules && ln -sf base xorg
30}