blob: af902383a7b6c532b57e23f39ba2027ef3e1ad5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=keybinder3
_pkgname=keybinder-3.0
pkgver=0.3.1
pkgrel=0
pkgdesc="Library for registering global key bindings, for gtk-based applications. GTK3 version"
url="https://github.com/engla/keybinder"
arch="all"
license="GPL2"
makedepends="gtk+3.0-dev python2-dev py-gobject
gobject-introspection-dev automake autoconf libtool gnome-common
gtk-doc"
subpackages="$pkgname-dev $pkgname-doc"
source="https://github.com/engla/keybinder/archive/$_pkgname-v${pkgver}.tar.gz"
builddir="$srcdir/keybinder-${_pkgname}-v$pkgver"
build() {
cd "$builddir"
./autogen.sh
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--enable-shared \
--disable-static \
--enable-gtk-doc
make || return 1
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
md5sums="c2f534d7977b337b333313ac9b8bd6c9 keybinder-3.0-v0.3.1.tar.gz"
sha256sums="0ebd17f026ce4ff6f0fb4248a95c2962d76b60b8cbccf07de28b07d7c5e42204 keybinder-3.0-v0.3.1.tar.gz"
sha512sums="dd398ae25db295c68365e9f70e463ab69b5e8594753bfab24b16a0bac5d16e18b85065418b19c7bce8d8d39ede8af7ced8414b5a04f20998790d536c333760ce keybinder-3.0-v0.3.1.tar.gz"
|