# HG changeset patch # User Hans-G?nter Theisgen # Date 1573630179 -3600 # Node ID 399f0c9c15f141ab080abb41b68c77726818d94f # Parent 47787b4928e9b38de463ba2936a22aafdee7b5d9 updated xorg-xf86-input-keyboard (1.7.0 -> 1.9.0) diff -r 47787b4928e9 -r 399f0c9c15f1 xorg-xf86-input-keyboard/receipt --- a/xorg-xf86-input-keyboard/receipt Wed Nov 13 00:20:13 2019 -0500 +++ b/xorg-xf86-input-keyboard/receipt Wed Nov 13 08:29:39 2019 +0100 @@ -1,15 +1,16 @@ # SliTaz package receipt. PACKAGE="xorg-xf86-input-keyboard" -VERSION="1.7.0" +VERSION="1.9.0" CATEGORY="x-window" SHORT_DESC="Xorg server keyboard driver." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" +WEB_SITE="https://www.x.org/wiki/" + SOURCE="xf86-input-keyboard" TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="https://www.x.org/" -WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/driver/$TARBALL" +WGET_URL="$XORG_MIRROR/driver/$TARBALL" DEPENDS="xorg-server" BUILD_DEPENDS="xorg-server-dev" @@ -17,23 +18,21 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --localstatedir=/var \ - --with-xorg-module-dir=/usr/lib/X11/modules \ - $CONFIGURE_ARGS && - make && - make DESTDIR=$DESTDIR install + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --with-xorg-module-dir=/usr/lib/X11/modules \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/X11/modules/input/ - cp -a $install/usr/lib/X11/modules/input/*.so \ - $fs/usr/lib/X11/modules/input/ + cp -a $install/usr/lib/X11/modules/input/*.so \ + $fs/usr/lib/X11/modules/input/ } -