blob: c241dc2c2c3ea66f1122c8a9a2207c03b04aac93 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/mkpkg
# description: Set keyboard using X Keyboard Extension
# url: https://xorg.freedesktop.org
name=x11-setxkbmap
version=1.3.4
release=1
depends=(libxkbfile)
source=(https://www.x.org/releases/individual/app/setxkbmap-$version.tar.xz)
build() {
cd setxkbmap-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|