PKGBUILDs/community/libfakekey/PKGBUILD
2009-10-09 21:15:33 -05:00

26 lines
No EOL
649 B
Bash

# Contributor: zoulnix <z[o]ulnix.borkedduck.c[o]m>
pkgname=libfakekey
pkgver=0.1
pkgrel=3
pkgdesc="X virtual keyboard library."
arch=('i686' 'x86_64')
url="http://matchbox-project.org/"
license=('GPL')
depends=('libxtst')
makedepends=('gcc' 'make' 'pkgconfig')
options=('!libtool')
source=(http://matchbox-project.org/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2)
md5sums=('83dbde4d77e8baf0176fe4291d8a2303')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static
make || return 1
make DESTDIR=${pkgdir} install || return 1
}