aboutsummaryrefslogtreecommitdiffstats
path: root/packages/keymap-locales/keymap-locales.bb
blob: 5ba84e69ca0a2d3e858d2c7ada02f44bbb567b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DESCRIPTION = "Localized key mappings"
SECTION = "base"
PRIORITY = "optional"
MAINTAINER = "Matthias 'CoreDump' Hentges  <oe@hentges.net>"
LICENSE = "GPL"

PR = "r4"

SRC_URI = "file://*.map"

# If any python guru wants to setup PACKAGES_$machine with some code instead,
# be my guet =)
PACKAGES_akita = "keymap-extension-de"

FILES_keymap-extension-de = "/etc/*-de.map"
FILES_keymap-extension-fr = "/etc/*-fr.map"

do_install() {
	install -d ${D}/${sysconfdir}
	
	install -m 0644 ${WORKDIR}/*.map ${D}/${sysconfdir}
}