diff options
author | root <root@rshg054.dnsready.net> | 2013-06-17 01:18:25 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-06-17 01:18:25 -0700 |
commit | 3c8e479bfe9fab72058c833f2909a26232114733 (patch) | |
tree | 18202d3eaa2c9001216c161e395eb2d39a8d05fd /extra/libkeybinder3 | |
parent | 44c10f274ec720a1512b15457b9eeffea28c6041 (diff) |
Mon Jun 17 01:18:13 PDT 2013
Diffstat (limited to 'extra/libkeybinder3')
-rw-r--r-- | extra/libkeybinder3/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/libkeybinder3/PKGBUILD b/extra/libkeybinder3/PKGBUILD new file mode 100644 index 000000000..6f6964d20 --- /dev/null +++ b/extra/libkeybinder3/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 188580 2013-06-16 02:22:32Z eric $ +# Maintainer: Eric BĂ©langer <eric@archlinux.org> +# 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" +} |