wok diff xdotool/receipt @ rev 23543
gnumeric: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Apr 06 16:30:06 2020 +0000 (2020-04-06) |
parents | 6135577f4d08 |
children | 5ea0ce1cecc0 |
line diff
1.1 --- a/xdotool/receipt Sat Jan 26 12:26:47 2019 +0100 1.2 +++ b/xdotool/receipt Mon Apr 06 16:30:06 2020 +0000 1.3 @@ -1,29 +1,35 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xdotool" 1.7 -VERSION="2.20110530.1" 1.8 +VERSION="3.20160805.1" 1.9 CATEGORY="misc" 1.10 -SHORT_DESC="Fake keyboard/mouse input, window management, and more" 1.11 +SHORT_DESC="Fake keyboard and mouse input, window management, and more." 1.12 MAINTAINER="jozee@slitaz.org" 1.13 LICENSE="BSD" 1.14 +WEB_SITE="https://www.github.com/jordansissel/xdotool/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="https://www.semicomplete.com/projects/xdotool/" 1.18 -WGET_URL="http://semicomplete.googlecode.com/files/$TARBALL" 1.19 +WGET_URL="${WEB_SITE}releases/download/v$VERSION/$TARBALL" 1.20 1.21 DEPENDS="xorg-libX11 xorg-libXtst" 1.22 -BUILD_DEPENDS="xorg-libX11-dev xorg-libXtst-dev xorg-libXtst" 1.23 +BUILD_DEPENDS="libxkbcommon-dev xorg-libX11-dev xorg-libXtst-dev xorg-libXtst" 1.24 1.25 # Rules to configure and make the package. 1.26 compile_rules() 1.27 { 1.28 sed -i 's|uname -m|echo i486|' Makefile 1.29 - make && 1.30 - make PREFIX=/usr INSTALLMAN=/usr/share/man DESTDIR=$DESTDIR install 1.31 + make PREFIX=/usr && 1.32 + make install \ 1.33 + PREFIX=/usr \ 1.34 + INSTALLMAN=/usr/share/man \ 1.35 + DESTDIR=$DESTDIR 1.36 } 1.37 1.38 # Rules to gen a SliTaz package suitable for Tazpkg. 1.39 genpkg_rules() 1.40 { 1.41 mkdir -p $fs/usr 1.42 - cp -a $install/usr/bin $install/usr/lib $fs/usr 1.43 + 1.44 + cp -a $install/usr/bin $fs/usr 1.45 + cp -a $install/usr/lib $fs/usr 1.46 }