updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / xautoclick / PKGBUILD
blob6dacbf4777cb1081c60b2520d43dc9215d840b9f
1 # Contributor: Mariusz Kujawski <marinespl@gmail.com>
2 pkgname=xautoclick
3 name=xautoclick
4 pkgver=0.30
5 pkgrel=1
6 pkgdesc="Automates repetitive mouse clicking to reduce RSI."
7 arch=('i686' 'x86_64')
8 url="http://xautoclick.sourceforge.net"
9 license=('GPL')
10 depends=('libxtst')
11 optdepends=('gtk: for gtk based gui'
12             'gtk2: for gtk2 based gui'
13             'qt3: for qt3 based gui'
14             'qt: for qt4 based gui'
15             'fltk: for fltk based gui')
16 source=(http://downloads.sourceforge.net/project/$name/$name/$name-$pkgver/$name-$pkgver.tar.gz
17 qt4.patch
18 Makefile.patch)
20 md5sums=('00173268a5fa00e20c5028cac0e020ea'
21          '145ad6004a86215c77343cafdab1ee88'
22                   '36bf8e322bbc5690c79b712161db8c45')
25 build() {
26   cd "$srcdir/$name-$pkgver"
28   patch guiqt4.cpp < ../../qt4.patch
30   ./configure --prefix=$pkgdir/usr
32   patch Makefile < ../../Makefile.patch
33   make || return 1
34   make install || return 1
36   # move manpage to proper directory
37   install -d ${pkgdir}/usr/share || return 1
38   mv ${pkgdir}/usr/man ${pkgdir}/usr/share || return 1
41 # vim:set ts=2 sw=2 et: