wok-undigest annotate xbindkeys/receipt @ rev 322

Fix: oxine receipt
author Alexander Medvedev <devl547@gmail.com>
date Sat Jun 11 12:39:02 2011 +0000 (2011-06-11)
parents
children
rev   line source
jozee@98 1 # SliTaz package receipt.
jozee@98 2
jozee@98 3 PACKAGE="xbindkeys"
jozee@98 4 VERSION="1.8.3"
jozee@98 5 CATEGORY="x-window"
jozee@98 6 MAINTAINER="jozee@slitaz.org"
jozee@98 7 SHORT_DESC="Launch shell commands with your keyboard or your mouse under X"
jozee@98 8 BUILD_DEPENDS=" xorg-libX11-dev"
jozee@98 9 WEB_SITE="http://hocwp.free.fr/xbindkeys"
jozee@98 10 DEPENDS="xorg-libX11"
jozee@98 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@98 12 WGET_URL="$WEB_SITE/$TARBALL"
jozee@98 13 TAGS="keyboard"
jozee@98 14
jozee@98 15 # Rules to configure and make the package.
jozee@98 16
jozee@98 17 compile_rules() {
jozee@98 18 cd $src
jozee@98 19 ./configure --prefix=/usr \
jozee@98 20 --disable-tk \
jozee@98 21 --disable-guile &&
jozee@98 22 make &&
jozee@98 23 make DESTDIR=$PWD/_pkg install
jozee@98 24 }
jozee@98 25
jozee@98 26 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@98 27 genpkg_rules()
jozee@98 28 {
jozee@98 29 mkdir -p $fs/usr
jozee@98 30 cp -a $_pkg/usr/bin $fs/usr
jozee@98 31
jozee@98 32 }