wok view xdotool/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
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 }