# HG changeset patch # User Hans-Günter Theisgen # Date 1573121039 -3600 # Node ID ef8e00335e1ea0253bc55431e3f6d2a63ddf650b # Parent b34859d087d13ba617e87dcf879ad5aa738ceb9a updated xdotool (2.20110530.1 -> 3.20160805.1) diff -r b34859d087d1 -r ef8e00335e1e xdotool/receipt --- a/xdotool/receipt Thu Nov 07 10:41:56 2019 +0100 +++ b/xdotool/receipt Thu Nov 07 11:03:59 2019 +0100 @@ -1,29 +1,35 @@ # SliTaz package receipt. PACKAGE="xdotool" -VERSION="2.20110530.1" +VERSION="3.20160805.1" CATEGORY="misc" -SHORT_DESC="Fake keyboard/mouse input, window management, and more" +SHORT_DESC="Fake keyboard and mouse input, window management, and more." MAINTAINER="jozee@slitaz.org" LICENSE="BSD" +WEB_SITE="https://www.github.com/jordansissel/xdotool/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://www.semicomplete.com/projects/xdotool/" -WGET_URL="http://semicomplete.googlecode.com/files/$TARBALL" +WGET_URL="${WEB_SITE}releases/download/v$VERSION/$TARBALL" DEPENDS="xorg-libX11 xorg-libXtst" -BUILD_DEPENDS="xorg-libX11-dev xorg-libXtst-dev xorg-libXtst" +BUILD_DEPENDS="libxkbcommon-dev xorg-libX11-dev xorg-libXtst-dev xorg-libXtst" # Rules to configure and make the package. compile_rules() { sed -i 's|uname -m|echo i486|' Makefile - make && - make PREFIX=/usr INSTALLMAN=/usr/share/man DESTDIR=$DESTDIR install + make PREFIX=/usr && + make install \ + PREFIX=/usr \ + INSTALLMAN=/usr/share/man \ + DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/bin $install/usr/lib $fs/usr + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib $fs/usr }