Date: Sunday, June 16, 2013 @ 04:10:41 Author: eric Revision: 188578 New quodlibet optdepends
Added: libkeybinder3/ libkeybinder3/repos/ libkeybinder3/trunk/ libkeybinder3/trunk/PKGBUILD ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Added: libkeybinder3/trunk/PKGBUILD =================================================================== --- libkeybinder3/trunk/PKGBUILD (rev 0) +++ libkeybinder3/trunk/PKGBUILD 2013-06-16 02:10:41 UTC (rev 188578) @@ -0,0 +1,29 @@ +# $Id: PKGBUILD,v 1.13 2007/06/19 02:12:51 Snowman Exp $ +# Maintainer: Eric Bélanger <[email protected]> +# Contributor: speps <speps at aur dot archlinux dot org> + +pkgname=libkeybinder3 +pkgver=0.3.0 +pkgrel=2 +pkgdesc="A library for registering global keyboard shortcuts" +arch=('i686' 'x86_64') +url="http://kaizer.se/wiki/keybinder/" +license=('MIT') +depends=('gtk3') +makedepends=('gtk-doc') +optdepends=('lua-lgi: lua bindings') +options=('!libtool') +source=(http://archive.ubuntu.com/ubuntu/pool/universe/k/keybinder-3.0/keybinder-3.0_${pkgver}.orig.tar.gz) +sha1sums=('53167d295ffa1d356bfad6f9360b90bd85e8fb26') + +build() { + cd keybinder-3.0-${pkgver} + ./configure --prefix=/usr --enable-gtk-doc + make +} + +package() { + cd keybinder-3.0-${pkgver} + make DESTDIR="$pkgdir" install + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +}
