blob: 4953c791a5ae1a8696c1316b3a94bc65084be8bd (
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
|
#!/bin/mkpkg
# description: XKB keyboard description compiler
# url: https://xorg.freedesktop.org
name=xkbcomp
version=1.5.0
release=1
depends=(libxkbfile)
source=(https://www.x.org/releases/individual/app/xkbcomp-$version.tar.xz)
sha256sums=(
"2ac31f26600776db6d9cd79b3fcd272263faebac7eb85fb2f33c7141b8486060"
)
build() {
cd xkbcomp-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG pkgconfigdir=/usr/share/pkgconfig install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|