blob: 52f4c53e4693dcdf0874e42c59d0689e79eaa8ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/mkpkg
# description: X keyboard configuration database
# url: https://freedesktop.org/wiki/Software/XKeyboardConfig
name=xkeyboard-config
version=2.48
release=1
depends=(xkbcomp libxslt)
makedeps=(meson perl)
source=(https://gitlab.freedesktop.org/$name/$name/-/archive/$name-$version/$name-$name-$version.tar.bz2)
sha256sums=(
"6bf6879c3a280c599e6db29bd8e24935b1ad0fd4ff42cc09ce8d694e22c94b39"
)
build() {
meson setup $name-$name-$version build \
--prefix=/usr \
--buildtype=plain \
-D compat-rules=true \
-D xorg-rules-symlinks=true
meson compile -C build
DESTDIR=$PKG meson install -C build
install -d $PKG/var/lib/xkb
rm -rf $PKG/usr/share/locale
find $PKG -name README -delete
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|