wok view xbindkeys/receipt @ rev 22147

updated xalan-c and xalan-c-dev (1.10.0 -> 1.11)
author Hans-G?nter Theisgen
date Wed Nov 06 16:26:14 2019 +0100 (2019-11-06)
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 }