Date: Monday, March 17, 2014 @ 18:45:55 Author: andyrtr Revision: 208091
archrelease: copy trunk to staging-any Added: xcb-proto/repos/staging-any/ xcb-proto/repos/staging-any/PKGBUILD (from rev 208090, xcb-proto/trunk/PKGBUILD) ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Copied: xcb-proto/repos/staging-any/PKGBUILD (from rev 208090, xcb-proto/trunk/PKGBUILD) =================================================================== --- staging-any/PKGBUILD (rev 0) +++ staging-any/PKGBUILD 2014-03-17 17:45:55 UTC (rev 208091) @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Andreas Radke <andy...@archlinux.org> +# Contributor: Jan de Groot <j...@archlinux.org> + +pkgname=xcb-proto +pkgver=1.10 +pkgrel=2 +pkgdesc="XML-XCB protocol descriptions" +arch=(any) +url="http://xcb.freedesktop.org/" +license=('custom') +makedepends=('python' 'libxml2') +source=($url/dist/$pkgname-$pkgver.tar.bz2) +sha256sums=('7ef40ddd855b750bc597d2a435da21e55e502a0fefa85b274f2c922800baaf05') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install + install -m755 -d "$pkgdir/usr/share/licenses/$pkgname" + install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname" +}