blob: f92f0e005c393aef5c4ec6c4026b67056e8772bd (
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: XCB keysyms utility library
# url: https://xcb.freedesktop.org/
name=xcb-util-keysyms
version=0.4.1
release=1
depends=(libxcb)
source=(https://xcb.freedesktop.org/dist/xcb-util-keysyms-$version.tar.xz)
sha256sums=(
"7c260a5294412aed429df1da2f8afd3bd07b7cba3fec772fba15a613a6d5c638"
)
build() {
cd xcb-util-keysyms-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|