wok diff usbredir/receipt @ rev 22291

updated xorg-xkbutils (1.0.3 -> 1.0.4)
author Hans-G?nter Theisgen
date Wed Nov 13 16:11:02 2019 +0100 (2019-11-13)
parents 8dd8bab3f0ca
children 934055de50e2
line diff
     1.1 --- a/usbredir/receipt	Thu Jan 24 14:51:04 2019 +0100
     1.2 +++ b/usbredir/receipt	Wed Nov 13 16:11:02 2019 +0100
     1.3 @@ -1,22 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="usbredir"
     1.7 -VERSION="0.7"
     1.8 +VERSION="0.8.0"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="A protocol to send usb traffic over a network connection."
    1.11 +SHORT_DESC="A protocol to send USB traffic over a network connection."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2 LGPL2.1"
    1.14 +WEB_SITE="https://www.spice-space.org/usbredir.html"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="https://www.spice-space.org/usbredir.html"
    1.18 -WGET_URL="http://spice-space.org/download/usbredir/$TARBALL"
    1.19 +WGET_URL="https://spice-space.org/download/usbredir/$TARBALL"
    1.20  
    1.21  DEPENDS="libusb"
    1.22 -BUILD_DEPENDS="pkg-config glib libusb-dev"
    1.23 +BUILD_DEPENDS="glib libusb-dev pkg-config"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	./configure --prefix=/usr \
    1.29 +	./configure		\
    1.30 +		--prefix=/usr	\
    1.31  		$CONFIGURE_ARGS &&
    1.32  	make &&
    1.33  	make DESTDIR=$DESTDIR install
    1.34 @@ -26,6 +28,7 @@
    1.35  genpkg_rules()
    1.36  {
    1.37  	mkdir -p $fs/usr/lib
    1.38 -	cp -a $install/usr/sbin $fs/usr
    1.39 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.40 +
    1.41 +	cp -a $install/usr/sbin		$fs/usr
    1.42 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.43  }