diff options
Diffstat (limited to 'abs/core/libxau')
-rw-r--r-- | abs/core/libxau/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/core/libxau/PKGBUILD b/abs/core/libxau/PKGBUILD new file mode 100644 index 0000000..7b2116b --- /dev/null +++ b/abs/core/libxau/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: Alexander Baldeck <alexander@archlinux.org> +# Contributor: Jan de Groot <jgc@archlinux.org> +pkgname=libxau +pkgver=1.0.3 +pkgrel=1 +pkgdesc="X11 authorisation library" +arch=(i686 x86_64) +url="http://xorg.freedesktop.org/" +depends=('glibc') +makedepends=('pkgconfig' 'xproto') +options=('!libtool') +source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2) + +build() { + cd ${startdir}/src/libXau-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc \ + --host=${CHOST} --build=${CHOST} + make || return 1 + make DESTDIR=${startdir}/pkg install || return 1 +} +md5sums=('75a9f2b85cd1617b5ca98c9095323853') |