blob: e89b840f94492f64c05ee676a98e528b5df905ac (
plain)
1 # Description: X Authorization routines
2 # URL: https://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-xorgproto
5
6 name=xorg-libxau
7 version=1.0.11
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libXau-$version.tar.xz)
10
11 build() {
12 cd libXau-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|