wok view libkeybinder/receipt @ rev 23939

Add qemu-mipsel
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 12 12:54:45 2020 +0000 (2020-09-12)
parents 10c4b26178ec
children ee53899c6189
line source
1 # SliTaz package receipt.
3 PACKAGE="libkeybinder"
4 VERSION="0.3.0"
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"
10 SOURCE="keybinder"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="http://kaizer.se/publicfiles/$SOURCE/$TARBALL"
14 DEPENDS="gtk+"
15 BUILD_DEPENDS="gtk+-dev gobject-introspection-dev xorg-libXext-dev python-dev \
16 pygtk-dev pygobject-dev automake autoconf libtool lua5.1-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 autoreconf -vif &&
22 ./configure \
23 --with-lua-suffix=5.1 \
24 --with-lua-includes=/usr/include/lua/5.1 \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*so* $fs/usr/lib
34 cp -a $install/usr/lib/python* $fs/usr/lib
35 }