summaryrefslogtreecommitdiff
path: root/libs/xcb-proto/MAKEPKG
blob: 13abf01246e8cb7c5f2ff4dd35607eb86cbaeb62 (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: XCB protocol descriptions
# url: https://xcb.freedesktop.org/

name=xcb-proto
version=1.17.0
release=1
makedeps=(python3)
source=(https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-$version.tar.xz)

sha256sums=(
    "2c1bacd2110f4799f74de6ebb714b94cf6f80fb112316b1219480fd22562148c"
)

build() {
    cd xcb-proto-$version
    
    PYTHON=/usr/bin/python3 \
    ./configure --prefix=/usr
    
    make
    make DESTDIR=$PKG install
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh