diff options
author | root <root@rshg054.dnsready.net> | 2012-06-07 00:01:55 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-06-07 00:01:55 +0000 |
commit | 334c2a7916a80d08b1c216cfbf02135e64891632 (patch) | |
tree | d5ed69695fb4da7349d218aa56fa4403017b7e9c /community/lxinput/PKGBUILD | |
parent | 664b1c2195b2884102cc2d5a56a13702f8ee44fe (diff) |
Thu Jun 7 00:01:54 UTC 2012
Diffstat (limited to 'community/lxinput/PKGBUILD')
-rw-r--r-- | community/lxinput/PKGBUILD | 28 |
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 +} + |