core/libxau/PKGBUILD
2012-09-25 14:51:48 +00:00

31 lines
721 B
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=libxau
pkgver=1.0.7
pkgrel=1
pkgdesc="X11 authorisation library"
arch=(i686 x86_64)
url="http://xorg.freedesktop.org/"
depends=('glibc')
makedepends=('pkgconfig' 'xproto')
license=('custom')
options=('!libtool')
source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2)
sha1sums=('29c47207fd246425b906f525b2220235ce4cd0f6')
build() {
cd "${srcdir}/libXau-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc
make
}
package () {
cd "${srcdir}/libXau-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}