added keyboardctl a dep from calamares to show the keyboard key numbers

This commit is contained in:
AlmAck 2015-09-03 21:42:21 +00:00
parent dd7a18c6fe
commit 5fbccac92e
2 changed files with 28 additions and 0 deletions

20
keyboardctl/PKGBUILD Normal file
View File

@ -0,0 +1,20 @@
pkgname=keyboardctl
pkgver=0.1.6
pkgrel=1
arch=('x86_64')
pkgdesc="Keymap setup program"
url="https://github.com/manjaro/keyboardctl"
license=('GPL')
options=('emptydirs')
depends=('kbd' 'xkeyboard-config' 'systemd')
makedepends=('git')
install=keyboardctl.install
source=("git://github.com/manjaro/keyboardctl.git")
md5sums=('SKIP')
package() {
cd ${srcdir}/${pkgname}
make DESTDIR="$pkgdir" install
}

View File

@ -0,0 +1,8 @@
post_upgrade() {
rm '/etc/systemd/system/sysinit.target.wants/keyboardctl.service'
}
pre_remove() {
rm '/etc/systemd/system/sysinit.target.wants/keyboardctl.service'
}