void-packages/srcpkgs/libkeybinder3/template

42 lines
1.1 KiB
Bash
Raw Normal View History

2015-08-04 00:42:27 +00:00
# Template file for 'libkeybinder3'
pkgname=libkeybinder3
2015-11-06 19:39:41 +00:00
version=0.3.1
revision=1
wrksrc="keybinder-keybinder-3.0-v${version}"
2015-08-04 00:42:27 +00:00
build_style=gnu-configure
configure_args="$(vopt_enable gir introspection)"
hostmakedepends="gnome-common gtk-doc libtool pkg-config $(vopt_if gir gobject-introspection)"
makedepends="gtk+3-devel"
short_desc="Library for registering global keyboard shortcuts (GTK+3)"
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
license="MIT"
homepage="https://github.com/engla/keybinder"
distfiles="${homepage}/archive/keybinder-3.0-v${version}.tar.gz"
2015-11-06 19:39:41 +00:00
checksum=0ebd17f026ce4ff6f0fb4248a95c2962d76b60b8cbccf07de28b07d7c5e42204
2015-08-04 00:42:27 +00:00
build_options="gir"
if [ -z "$CROSS_BUILD" ]; then
2015-11-06 19:39:41 +00:00
build_options_default="gir"
2015-08-04 00:42:27 +00:00
fi
pre_configure() {
NOCONFIGURE=1 ./autogen.sh
}
2015-08-29 22:36:41 +00:00
post_install() {
vlicense COPYING
}
2015-08-04 00:42:27 +00:00
libkeybinder3-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
2015-11-06 19:39:41 +00:00
short_desc+=" - developement files"
2015-08-04 00:42:27 +00:00
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
vmove usr/lib/pkgconfig
if [ "$build_option_gir" ]; then
vmove usr/share/gir-1.0
fi
}
}