wok-next view libkeybinder/receipt @ rev 20883

Check Repology info from h* to l* packages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jul 11 02:06:34 2018 +0300 (2018-07-11)
parents 25deb7c6df08
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libkeybinder"
4 VERSION="0.3.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Library for registering global keyboard shortcuts"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/kupferlauncher/keybinder"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/kupferlauncher/keybinder/releases/download/keybinder-3.0-v$VERSION/keybinder-3.0-$VERSION.tar.gz"
13 WGET_URL="https://github.com/kupferlauncher/keybinder/releases/download/v$VERSION/keybinder-$VERSION.tar.gz"
15 BUILD_DEPENDS="gtk+-dev gobject-introspection-dev xorg-libXext-dev python-dev \
16 pygtk-dev pygobject-dev automake autoconf libtool"
17 SPLIT="libkeybinder-python libkeybinder-dev"
19 compile_rules() {
20 autoreconf -vif &&
21 ./configure $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 libkeybinder)
30 copy libkeybinder.so*
31 DEPENDS="glib gtk+ xorg-libX11"
32 ;;
33 libkeybinder-python)
34 copy @std @rm
35 CAT="x-window|python bindings"
36 DEPENDS="glib libkeybinder python"
37 ;;
38 *-dev)
39 copy @dev
40 DEPENDS="libkeybinder libkeybinder-python \
41 gtk+-dev"
42 ;;
43 esac
44 }