wok-6.x rev 22267
updated xorg-xf86-input-vmmouse (13.0.0 -> 13.1.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Nov 13 10:27:54 2019 +0100 (2019-11-13) |
parents | a3b8826757f5 |
children | c66bb42e5b3f |
files | xorg-xf86-input-vmmouse/receipt |
line diff
1.1 --- a/xorg-xf86-input-vmmouse/receipt Wed Nov 13 10:20:38 2019 +0100 1.2 +++ b/xorg-xf86-input-vmmouse/receipt Wed Nov 13 10:27:54 2019 +0100 1.3 @@ -1,14 +1,15 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xorg-xf86-input-vmmouse" 1.7 -VERSION="13.0.0" 1.8 +VERSION="13.1.0" 1.9 CATEGORY="x-window" 1.10 SHORT_DESC="X.org VMWare Mouse Input driver." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 LICENSE="MIT" 1.13 +WEB_SITE="https://www.x.org/wiki/" 1.14 + 1.15 SOURCE="xf86-input-vmmouse" 1.16 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.17 -WEB_SITE="http://xorg.freedesktop.org/" 1.18 WGET_URL="$XORG_MIRROR/driver/$TARBALL" 1.19 1.20 DEPENDS="xorg-server" 1.21 @@ -17,22 +18,22 @@ 1.22 # Rules to configure and make the package. 1.23 compile_rules() 1.24 { 1.25 - cd $src 1.26 - ./configure \ 1.27 - --prefix=/usr \ 1.28 - --infodir=/usr/share/info \ 1.29 - --mandir=/usr/share/man \ 1.30 - --with-xorg-conf-dir=/etc/X11/xorg.conf.d \ 1.31 + ./configure \ 1.32 + --prefix=/usr \ 1.33 + --infodir=/usr/share/info \ 1.34 + --mandir=/usr/share/man \ 1.35 + --with-xorg-conf-dir=/etc/X11/xorg.conf.d \ 1.36 $CONFIGURE_ARGS && 1.37 - make && make DESTDIR=$DESTDIR install 1.38 + make && 1.39 + make DESTDIR=$DESTDIR install 1.40 } 1.41 1.42 # Rules to gen a SliTaz package suitable for Tazpkg. 1.43 genpkg_rules() 1.44 { 1.45 mkdir -p $fs/usr 1.46 - cp -a $install/usr/bin $fs/usr 1.47 - cp -a $install/usr/lib $fs/usr 1.48 - cp -a $install/etc $fs 1.49 + 1.50 + cp -a $install/usr/bin $fs/usr 1.51 + cp -a $install/usr/lib $fs/usr 1.52 + cp -a $install/etc $fs 1.53 } 1.54 -