updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / python-keybinder / PKGBUILD
blobedd16295e3f5930e4cee790e18d6ba4883bf962f
1 # Maintainer: Can Celasun <dcelasun[at]gmail[dot]com>
2 # Contributor: Asa Marco <marcoasa90@gmail.com>
3 # Contributor: SpepS <dreamspepser at yahoo dot it>
5 pkgname=python-keybinder
6 pkgver=0.2.2
7 pkgrel=4
8 pkgdesc="Python bindings to libkeybinder, a library for registering global keyboard shortcuts"
9 arch=(i686 x86_64)
10 url="http://kaizer.se/wiki/keybinder/"
11 license=('GPL')
12 depends=('libkeybinder' 'pygtk' 'pygobject')
13 conflicts=('keybinder')
14 options=('!libtool')
15 source=(http://kaizer.se/publicfiles/keybinder/keybinder-$pkgver.tar.gz)
16 md5sums=('b4ccd4bd19f3ae3f0ab2cbda11fcd3ac')
18 build() {
19   cd "$srcdir/keybinder-$pkgver"
21   export PYTHON="/usr/bin/python2"
23   ./configure \
24         --prefix=/usr \
25         --enable-python \
26         --disable-lua
28   make
31 package() {
32   cd "$srcdir/keybinder-$pkgver/$pkgname"
34   make DESTDIR="$pkgdir/" install
37 # vim:set ts=2 sw=2 et: