blob: 2251d81d3f1ce30c354b019d9a0a735266718dc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="make"
DEPS="xorgproto"
PKG_VER=1.0.9
SOURCE=https://www.x.org/pub/individual/lib/libXau-$PKG_VER.tar.bz2
DESC="X11 authorisation library"
build () {
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|