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