wok view xbindkeys/receipt @ rev 17581

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