wok view xdotool/receipt @ rev 19065
Take care on root in post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Apr 21 09:45:48 2016 +0200 (2016-04-21) |
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 }