summaryrefslogtreecommitdiff
path: root/community/lxinput/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/lxinput/PKGBUILD')
-rw-r--r--community/lxinput/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/lxinput/PKGBUILD b/community/lxinput/PKGBUILD
new file mode 100644
index 000000000..7ed91636f
--- /dev/null
+++ b/community/lxinput/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 72002 2012-06-05 13:35:16Z bpiotrowski $
+# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
+# Contributor: Filipp "Scorp" Andjelo <scorp@mailueberfall.de>
+
+pkgname=lxinput
+pkgver=0.3.2
+pkgrel=2
+pkgdesc="A small program to configure keyboard and mouse for LXDE."
+arch=('i686' 'x86_64')
+url="http://lxde.org/"
+license=('GPL')
+groups=('lxde')
+depends=('gtk2>=2.12.0')
+makedepends=('pkgconfig' 'intltool')
+source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
+md5sums=('5bf563d04984ef2a147433f3bdda687b')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir} install
+}
+