diff options
author | Britney Fransen <brfransen@gmail.com> | 2015-06-21 20:29:32 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2015-06-21 20:29:32 (GMT) |
commit | 450f7241266348e1de93e7f9fb75f4a61d2581b4 (patch) | |
tree | cf2969363f2ecad5447afdd029377cfb278ce124 /abs/core/xcb-util-keysyms/PKGBUILD | |
parent | 1742ae9fcf1a677b3c9405b846217a27567f667c (diff) | |
download | linhes_pkgbuild-450f7241266348e1de93e7f9fb75f4a61d2581b4.zip linhes_pkgbuild-450f7241266348e1de93e7f9fb75f4a61d2581b4.tar.gz linhes_pkgbuild-450f7241266348e1de93e7f9fb75f4a61d2581b4.tar.bz2 |
xcb-util-keysyms: initial inclusion. dep of xorg-server
Diffstat (limited to 'abs/core/xcb-util-keysyms/PKGBUILD')
-rw-r--r-- | abs/core/xcb-util-keysyms/PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/abs/core/xcb-util-keysyms/PKGBUILD b/abs/core/xcb-util-keysyms/PKGBUILD new file mode 100644 index 0000000..17933ae --- /dev/null +++ b/abs/core/xcb-util-keysyms/PKGBUILD @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +pkgname=xcb-util-keysyms +pkgver=0.4.0 +pkgrel=1 +pkgdesc="Utility libraries for XC Binding - Standard X key constants and conversion to/from keycodes" +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=('0ef8490ff1dede52b7de533158547f8b454b241aa3e4dcca369507f66f216dd9' + '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" +} |