diff options
Diffstat (limited to 'extra/libxcb/PKGBUILD')
-rw-r--r-- | extra/libxcb/PKGBUILD | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/extra/libxcb/PKGBUILD b/extra/libxcb/PKGBUILD index 6869b57ce..9d0e216c1 100644 --- a/extra/libxcb/PKGBUILD +++ b/extra/libxcb/PKGBUILD @@ -1,29 +1,26 @@ -# $Id: PKGBUILD 198271 2013-10-30 13:51:13Z allan $ +# $Id: PKGBUILD 202710 2013-12-25 21:25:44Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Alexander Baldeck <alexander@archlinux.org> pkgname=libxcb -pkgver=1.9.1 -pkgrel=2 +pkgver=1.10 +pkgrel=1 pkgdesc="X11 client-side library" arch=('i686' 'x86_64' 'mips64el') url="http://xcb.freedesktop.org/" -depends=('xcb-proto>=1.8-2' 'libxdmcp' 'libxau') +depends=('xcb-proto>=1.10' 'libxdmcp' 'libxau') makedepends=('pkgconfig' 'libxslt' 'python') license=('custom') source=($url/dist/$pkgname-$pkgver.tar.bz2 - libxcb-1.1-no-pthread-stubs.patch - reorder-configure.patch) -sha256sums=('d44a5ff4eb0b9569e6f7183b51fdaf6f58da90e7d6bfc36b612d7263f83e362f' - '1ec7a6e7dc8639baa6c3fbc61ca8556108fb824598bd6ab5ef1fa50d48d6d310' - '3e1adc51246e1f48545c1ab9703219c987685d241f1eab5d912b0840ce8a122a') + libxcb-1.1-no-pthread-stubs.patch) +sha256sums=('98d9ab05b636dd088603b64229dd1ab2d2cc02ab807892e107d674f9c3f2d5b5' + '748ed83af60468a0eb6785222e4a5ca589d28f20b9bfc60d5936ec93b8eef356') prepare() { cd "$pkgname-$pkgver" patch -Np1 -i ../libxcb-1.1-no-pthread-stubs.patch - # https://bugs.freedesktop.org/show_bug.cgi?id=66413 - patch -Np1 -i ../reorder-configure.patch - NOCONFIGURE=1 ./autogen.sh + autoreconf -vfi } build() { @@ -35,6 +32,11 @@ build() { make } +check() { + cd $pkgname-$pkgver + make -k check +} + package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install |