summaryrefslogtreecommitdiff
path: root/libs/libxau/MAKEPKG
blob: 488e6962b14d12ac9f1193c52aebb36cd5f24f66 (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: X authorization routines
# url: https://xorg.freedesktop.org

name=libxau
version=1.0.12
release=1
depends=(xorgproto)
source=(https://www.x.org/releases/individual/lib/libXau-$version.tar.xz)

sha256sums=(
    "74d0e4dfa3d39ad8939e99bda37f5967aba528211076828464d2777d477fc0fb"
)

build() {
    cd libXau-$version
    
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG install
}

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

# vim: filetype=sh