PKGBUILDs/community/libfakekey/PKGBUILD

26 lines
649 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# 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
}