# $Id: PKGBUILD 3507 2008-06-23 04:35:20Z eric $ # Maintainer: Eric Belanger # Contributor: mouse256 & AndyRTR pkgname=keytouch-editor pkgver=3.1.3 pkgrel=1 pkgdesc="An utility to create keyboard files for keytouch" arch=('i686' 'x86_64') url="http://keytouch.sourceforge.net/" license=('GPL') depends=('gtk2') install=keytouch-editor.install source=(http://downloads.sourceforge.net/keytouch/${pkgname}-${pkgver}.tar.gz keytouch-editor-3.1.3-glibc28.patch) md5sums=('046e0525d2b1275f1ec1b5140bd93565' 'def8cf803d7f25dd919b8ad090083bf1') sha1sums=('a8c0b28bac4b1f9de3897e1a78dc14b4d994334e' 'c6b725267a628cfc93388044cfd72974f53debaf') build() { cd ${srcdir}/${pkgname}-${pkgver} patch -p1 < ../keytouch-editor-3.1.3-glibc28.patch || return 1 autoreconf || return 1 ./configure --prefix=/usr || return 1 make || return 1 make DESTDIR=${pkgdir} install || return 1 }