blob: 8ca3460bb2f68c4928c1d3a2db645e290713de7e (
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
|
#!/bin/mkpkg
# description: X keyboard file library
# url: https://xorg.freedesktop.org
name=libxkbfile
version=1.2.0
release=1
depends=(libx11)
makedeps=(meson)
source=(https://www.x.org/releases/individual/lib/$name-$version.tar.xz)
sha256sums=(
"7f71884e5faf56fb0e823f3848599cf9b5a9afce51c90982baeb64f635233ebf"
)
build() {
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain
meson compile -C build
DESTDIR=$PKG meson install -C build
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|