diff options
author | root <root@rshg054.dnsready.net> | 2011-08-11 23:14:30 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-08-11 23:14:30 +0000 |
commit | 853acffdfdaafc5b2982cbac2a0e5adda28e6d6e (patch) | |
tree | ec8f471de81a4c58c3b2cc228009524ae31f312f /staging/xf86-input-keyboard | |
parent | 1a6b0f4a655e1fbda776cbb34f56a5fa061c27c7 (diff) |
Thu Aug 11 23:14:30 UTC 2011
Diffstat (limited to 'staging/xf86-input-keyboard')
-rw-r--r-- | staging/xf86-input-keyboard/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/staging/xf86-input-keyboard/PKGBUILD b/staging/xf86-input-keyboard/PKGBUILD new file mode 100644 index 000000000..9b6d5eaa9 --- /dev/null +++ b/staging/xf86-input-keyboard/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 135126 2011-08-10 12:13:02Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=xf86-input-keyboard +pkgver=1.6.0 +pkgrel=3 +pkgdesc="X.Org keyboard input driver" +arch=(i686 x86_64) +license=('custom') +url="http://xorg.freedesktop.org/" +depends=('glibc') +makedepends=('xorg-server-devel>=1.10.99.902') +conflicts=('xorg-server<1.10.99.902') +options=('!libtool') +groups=('xorg-drivers' 'xorg') +source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) +sha1sums=('8e845086749f8c4b64fdfa852b4b26cf7bb62dc9') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} |