wok view libkeybinder/receipt @ rev 14138

Add libkeybinder; xfce4-volumed: change
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 01 16:24:09 2013 +0000 (2013-03-01)
parents
children a8409aad034a
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"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*so* $fs/usr/lib
28 cp -a $install/usr/lib/python* $fs/usr/lib
29 }