wok annotate libkeybinder/receipt @ rev 14908

slitaz-i18n: rewrite locale-pack.functions; slitaz-configs: now generate openbox desktop menu using po files; locale-*: update using new locale-pack.functions (FIXME: post_remove)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Aug 03 17:37:48 2013 +0300 (2013-08-03)
parents a8409aad034a
children 16df76e1fc6a
rev   line source
al@14138 1 # SliTaz package receipt.
al@14138 2
al@14138 3 PACKAGE="libkeybinder"
al@14138 4 VERSION="0.3.0"
al@14138 5 CATEGORY="x-window"
al@14138 6 SHORT_DESC="Library for registering global keyboard shortcuts"
al@14138 7 MAINTAINER="al.bobylev@gmail.com"
pascal@14714 8 LICENSE="GPL2"
al@14138 9 WEB_SITE="http://kaizer.se/wiki/keybinder/"
al@14138 10 SOURCE="keybinder"
al@14138 11 TARBALL="$SOURCE-$VERSION.tar.gz"
al@14138 12 WGET_URL="http://kaizer.se/publicfiles/$SOURCE/$TARBALL"
al@14138 13
al@14138 14 DEPENDS="gtk+"
al@14138 15 BUILD_DEPENDS="gtk+-dev gobject-introspection-dev xorg-libXext-dev python-dev \
pascal@14199 16 pygtk-dev pygobject-dev automake autoconf libtool"
al@14138 17
al@14138 18 # Rules to configure and make the package.
al@14138 19 compile_rules()
al@14138 20 {
pascal@14199 21 autoreconf -vif &&
al@14138 22 ./configure $CONFIGURE_ARGS && make && make install
al@14138 23 }
al@14138 24
al@14138 25 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14138 26 genpkg_rules()
al@14138 27 {
al@14138 28 mkdir -p $fs/usr/lib
al@14138 29 cp -a $install/usr/lib/*so* $fs/usr/lib
al@14138 30 cp -a $install/usr/lib/python* $fs/usr/lib
al@14138 31 }