1 # Maintainer: Kevin Sullivan <ksullivan@archlinux.us>
6 pkgdesc="Use mouse gestures to initiate commands and hotkeys."
8 url="http://easystroke.sourceforge.net/"
10 depends=('gtkmm' 'boost' 'libxtst' 'dbus-glib' 'xorg-server>=1.7.0')
11 makedepends=('inputproto' 'intltool' 'gettext' 'xorg-server-devel')
12 optdepends=('help2man: needed to create a manual page')
13 install=easystroke.install
14 source=( http://downloads.sourceforge.net/easystroke/$pkgname-$pkgver.tar.gz )
15 md5sums=('ba989d1745415be94afd567e33d124bb')
18 cd "$srcdir/$pkgname-$pkgver"
20 # Start compilation process with two jobs.
24 # Note: requires help2man and there is no guarantee this does anything. In fact,
25 # the produced man pages might need to be manually installed into $pkgdir.
30 cd "$srcdir/$pkgname-$pkgver"
32 # Put files into their respective places
33 make PREFIX=/usr DESTDIR="$pkgdir/" install
34 install -D -m644 ${srcdir}/${pkgname}-${pkgver}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
37 # vim:set ts=2 sw=2 et: