updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / easystroke / PKGBUILD
blob0d5571b92ec2e25e5f55345989c8e24758257a8d
1 # Maintainer: Kevin Sullivan <ksullivan@archlinux.us>
3 pkgname=easystroke
4 pkgver=0.5.5.1
5 pkgrel=1
6 pkgdesc="Use mouse gestures to initiate commands and hotkeys."
7 arch=('i686' 'x86_64')
8 url="http://easystroke.sourceforge.net/"
9 license=('custom:ISC')
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')
17 build() {
18   cd "$srcdir/$pkgname-$pkgver"
20   # Start compilation process with two jobs.
21   make -j2
23   # Make man page.
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.
26   #make man
29 package() {
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: