wok rev 22090

updated usbredir and usbredir-dev (0.7 -> 0.8.0)
author Hans-G?nter Theisgen
date Thu Oct 31 14:03:29 2019 +0100 (2019-10-31)
parents 3b2652bb1db8
children 268e759bcf02
files usbredir-dev/receipt usbredir/receipt
line diff
     1.1 --- a/usbredir-dev/receipt	Thu Oct 31 13:27:08 2019 +0100
     1.2 +++ b/usbredir-dev/receipt	Thu Oct 31 14:03:29 2019 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="usbredir-dev"
     1.7 -VERSION="0.7"
     1.8 +VERSION="0.8.0"
     1.9  CATEGORY="development"
    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 - development files."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2 LGPL2.1"
    1.14 -WEB_SITE="http://www.spice-space.org/page/UsbRedir"
    1.15 +WEB_SITE="https://www.spice-space.org/usbredir.html"
    1.16 +
    1.17 +DEPENDS="pkg-config usbredir"
    1.18  WANTED="usbredir"
    1.19  
    1.20 -DEPENDS="usbredir pkg-config"
    1.21 -
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
    1.24  {
    1.25  	mkdir -p $fs/usr/lib
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.28 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.29 +
    1.30 +	cp -a $install/usr/include		$fs/usr
    1.31 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.32 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.33  }
     2.1 --- a/usbredir/receipt	Thu Oct 31 13:27:08 2019 +0100
     2.2 +++ b/usbredir/receipt	Thu Oct 31 14:03:29 2019 +0100
     2.3 @@ -1,22 +1,24 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="usbredir"
     2.7 -VERSION="0.7"
     2.8 +VERSION="0.8.0"
     2.9  CATEGORY="network"
    2.10 -SHORT_DESC="A protocol to send usb traffic over a network connection."
    2.11 +SHORT_DESC="A protocol to send USB traffic over a network connection."
    2.12  MAINTAINER="pascal.bellard@slitaz.org"
    2.13  LICENSE="GPL2 LGPL2.1"
    2.14 +WEB_SITE="https://www.spice-space.org/usbredir.html"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.17 -WEB_SITE="https://www.spice-space.org/usbredir.html"
    2.18 -WGET_URL="http://spice-space.org/download/usbredir/$TARBALL"
    2.19 +WGET_URL="https://spice-space.org/download/usbredir/$TARBALL"
    2.20  
    2.21  DEPENDS="libusb"
    2.22 -BUILD_DEPENDS="pkg-config glib libusb-dev"
    2.23 +BUILD_DEPENDS="glib libusb-dev pkg-config"
    2.24  
    2.25  # Rules to configure and make the package.
    2.26  compile_rules()
    2.27  {
    2.28 -	./configure --prefix=/usr \
    2.29 +	./configure		\
    2.30 +		--prefix=/usr	\
    2.31  		$CONFIGURE_ARGS &&
    2.32  	make &&
    2.33  	make DESTDIR=$DESTDIR install
    2.34 @@ -26,6 +28,7 @@
    2.35  genpkg_rules()
    2.36  {
    2.37  	mkdir -p $fs/usr/lib
    2.38 -	cp -a $install/usr/sbin $fs/usr
    2.39 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.40 +
    2.41 +	cp -a $install/usr/sbin		$fs/usr
    2.42 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.43  }