updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / libkeybinder3 / PKGBUILD
blobf53155e7af86ed372a0e2f4f506e22b5eabeb82e
1 # Maintainer: SpepS <dreamspepser at yahoo dot it>
3 _pkg=libkeybinder
4 pkgname=${_pkg}3
5 pkgver=0.2.2
6 pkgrel=2
7 pkgdesc="A library for registering global keyboard shortcuts. Gtk3 version."
8 arch=(i686 x86_64)
9 url="http://kaizer.se/wiki/keybinder/"
10 license=('GPL')
11 depends=('gtk3')
12 makedepends=('gnome-common' 'gtk-doc')
13 optdepends=('lgi-git: lua bindings')
14 conflicts=('keybinder3')
15 options=('!libtool')
16 source=("https://github.com/engla/keybinder/tarball/keybinder-3.0")
17 md5sums=(`wget --no-check-certificate -qO- $source | md5sum | cut -c -32`)
19 build() {
20   cd `find "$srcdir" -maxdepth 1 -mindepth 1 -type d`
22   ./autogen.sh --prefix=/usr \
23                --disable-lua \
24                --enable-gtk-doc
26   make
29 package() {
30   cd `find "$srcdir" -maxdepth 1 -mindepth 1 -type d`
32   make DESTDIR="$pkgdir/" install
35 # vim:set ts=2 sw=2 et: