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