wok annotate 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
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"
al@14138 8 WEB_SITE="http://kaizer.se/wiki/keybinder/"
al@14138 9 SOURCE="keybinder"
al@14138 10 TARBALL="$SOURCE-$VERSION.tar.gz"
al@14138 11 WGET_URL="http://kaizer.se/publicfiles/$SOURCE/$TARBALL"
al@14138 12
al@14138 13 DEPENDS="gtk+"
al@14138 14 BUILD_DEPENDS="gtk+-dev gobject-introspection-dev xorg-libXext-dev python-dev \
pascal@14199 15 pygtk-dev pygobject-dev automake autoconf libtool"
al@14138 16
al@14138 17 # Rules to configure and make the package.
al@14138 18 compile_rules()
al@14138 19 {
pascal@14199 20 autoreconf -vif &&
al@14138 21 ./configure $CONFIGURE_ARGS && make && make install
al@14138 22 }
al@14138 23
al@14138 24 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14138 25 genpkg_rules()
al@14138 26 {
al@14138 27 mkdir -p $fs/usr/lib
al@14138 28 cp -a $install/usr/lib/*so* $fs/usr/lib
al@14138 29 cp -a $install/usr/lib/python* $fs/usr/lib
al@14138 30 }