# SliTaz package receipt.

PACKAGE="xbindkeys"
VERSION="1.8.3"
CATEGORY="x-window"
MAINTAINER="jozee@slitaz.org"
SHORT_DESC="Launch shell commands with your keyboard or your mouse under X"
BUILD_DEPENDS=" xorg-libX11-dev"
WEB_SITE="http://hocwp.free.fr/xbindkeys"
DEPENDS="xorg-libX11"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WGET_URL="$WEB_SITE/$TARBALL"
TAGS="keyboard"

# Rules to configure and make the package.

compile_rules() {
  cd $src
  ./configure --prefix=/usr \
			--disable-tk \
			--disable-guile &&
  make &&
  make DESTDIR=$PWD/_pkg install 
}
	
# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr 
	cp -a $_pkg/usr/bin $fs/usr	

}