wok view xdotool/receipt @ rev 21759

mosh: use gcc83
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 26 19:12:58 2019 +0200 (2019-06-26)
parents 3705d68ed8f3
children ef8e00335e1e
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="https://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 sed -i 's|uname -m|echo i486|' Makefile
20 make &&
21 make PREFIX=/usr INSTALLMAN=/usr/share/man DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $install/usr/lib $fs/usr
29 }