wok view xdotool/receipt @ rev 19022

Up slitaz-boot-scripts (427), tazpkg (904), tazwok (557)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 01 11:32:41 2016 +0200 (2016-04-01)
parents 23c3aed67cd9
children f86d053a0423
line source
1 # SliTaz package receipt.
3 PACKAGE="xdotool"
4 VERSION="2.20110530.1"
5 CATEGORY="misc"
6 SHORT_DESC="Fake keyboard/mouse input, window management, and more"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.semicomplete.com/projects/xdotool/"
11 WGET_URL="http://semicomplete.googlecode.com/files/$TARBALL"
13 DEPENDS="xorg-libX11 xorg-libXtst"
14 BUILD_DEPENDS="xorg-libX11-dev xorg-libXtst-dev xorg-libXtst"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make && make PREFIX=/usr DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $install/usr/lib $fs/usr
28 }