wok view libkeybinder/receipt @ rev 14199

libkeybinder: needs autoreconf
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 13 18:51:10 2013 +0100 (2013-03-13)
parents 2bbae4856e6c
children 4904e3d374a9
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 WEB_SITE="http://kaizer.se/wiki/keybinder/"
9 SOURCE="keybinder"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WGET_URL="http://kaizer.se/publicfiles/$SOURCE/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev gobject-introspection-dev xorg-libXext-dev python-dev \
15 pygtk-dev pygobject-dev automake autoconf libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf -vif &&
21 ./configure $CONFIGURE_ARGS && make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*so* $fs/usr/lib
29 cp -a $install/usr/lib/python* $fs/usr/lib
30 }