wok annotate libkeybinder/receipt @ rev 19654

busybox: add buf 9471 fix (for wget)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jan 25 09:31:52 2017 +0100 (2017-01-25)
parents 4904e3d374a9
children 10c4b26178ec
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 }
al@18077 32