diff options
author | Britney Fransen <brfransen@gmail.com> | 2015-06-21 20:32:58 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2015-06-21 20:32:58 (GMT) |
commit | 423982d0ad5273b12f8175abb5107f923a00c70b (patch) | |
tree | 74b5f97d0277a40b19d8a4fd159162eac3f34662 /abs/core/xcb-util-renderutil/PKGBUILD | |
parent | 6630919c68990a5f482be34803d38df0c6e48976 (diff) | |
download | linhes_pkgbuild-423982d0ad5273b12f8175abb5107f923a00c70b.zip linhes_pkgbuild-423982d0ad5273b12f8175abb5107f923a00c70b.tar.gz linhes_pkgbuild-423982d0ad5273b12f8175abb5107f923a00c70b.tar.bz2 |
xcb-util-renderutil: initial inclusion. dep of xorg-server
Diffstat (limited to 'abs/core/xcb-util-renderutil/PKGBUILD')
-rw-r--r-- | abs/core/xcb-util-renderutil/PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/abs/core/xcb-util-renderutil/PKGBUILD b/abs/core/xcb-util-renderutil/PKGBUILD new file mode 100644 index 0000000..4bdd5fa --- /dev/null +++ b/abs/core/xcb-util-renderutil/PKGBUILD @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +pkgname=xcb-util-renderutil +pkgver=0.3.9 +pkgrel=1 +pkgdesc="Utility libraries for XC Binding - Convenience functions for the Render extension" +arch=('i686' 'x86_64') +url="http://xcb.freedesktop.org" +license=('custom') +depends=('libxcb>=1.7') +makedepends=('xorg-util-macros') +source=("http://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.bz2" + 'LICENSE') +sha256sums=('c6e97e48fb1286d6394dddb1c1732f00227c70bd1bedb7d1acabefdd340bea5b' + 'ded299aa179dcf0d885bf89274a4db77a530e03f9f5e7cf1c3c4ef1d60e914b9') + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr --disable-static + make +} + +check() { + cd ${pkgname}-${pkgver} + make check +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + + install -D -m644 "${srcdir}/LICENSE" \ + "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |