wok view libkeybinder/receipt @ rev 14309

Up: ethumb-dev (1.7.5)
author Dominique Corbex <domcox@slitaz.org>
date Sun Apr 07 10:20:34 2013 +0200 (2013-04-07)
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 }