diff options
author | Britney Fransen <brfransen@gmail.com> | 2014-04-06 00:24:29 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2014-04-06 00:24:29 (GMT) |
commit | f27f10c676f4e212ce4001959b240551203502c9 (patch) | |
tree | 5227f2e86127d537571e11657de1295beb4d95c4 /abs/extra/presentproto/PKGBUILD | |
parent | 666d9ffbfd0244bfda3fddd9841a2749f26a979b (diff) | |
download | linhes_pkgbuild-f27f10c676f4e212ce4001959b240551203502c9.zip linhes_pkgbuild-f27f10c676f4e212ce4001959b240551203502c9.tar.gz linhes_pkgbuild-f27f10c676f4e212ce4001959b240551203502c9.tar.bz2 |
presentproto: initial inclusion. dep of mesa. refs #964
Diffstat (limited to 'abs/extra/presentproto/PKGBUILD')
-rw-r--r-- | abs/extra/presentproto/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/abs/extra/presentproto/PKGBUILD b/abs/extra/presentproto/PKGBUILD new file mode 100644 index 0000000..53597f8 --- /dev/null +++ b/abs/extra/presentproto/PKGBUILD @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: AndyRTR <andyrtr@archlinux.org> + +pkgname=presentproto +pkgver=1.0 +pkgrel=1 +pkgdesc="X11 Present protocol specification" +arch=('any') +url="http://xorg.freedesktop.org/" +license=('custom') +source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2 + COPYING) +sha256sums=('812c7d48721f909a0f7a2cb1e91f6eead76159a36c4712f4579ca587552839ce' + '5e46864ede2fda46c3cb7cfe3a7b9f9e4bd36d8d21d8010a284caa64b81d465a') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir/" install + + # license is still missing + # COPYING is taken from top of /usr/include/X11/extensions/presentproto.h + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 ${srcdir}/COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} |