diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/libfakekey |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/libfakekey')
-rw-r--r-- | community/libfakekey/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/libfakekey/PKGBUILD b/community/libfakekey/PKGBUILD new file mode 100644 index 000000000..691c4ba75 --- /dev/null +++ b/community/libfakekey/PKGBUILD @@ -0,0 +1,31 @@ +# Contributor: zoulnix <z[o]ulnix.borkedduck.c[o]m> + +pkgname=libfakekey +pkgver=0.1 +pkgrel=4 +pkgdesc='X virtual keyboard library.' +arch=('i686' 'x86_64') +url='http://matchbox-project.org/' +license=('GPL') +depends=('libxtst') +options=('!libtool') +source=("http://matchbox-project.org/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('83dbde4d77e8baf0176fe4291d8a2303') + +build() { + cd ${pkgname}-${pkgver} + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |