wok diff usbredir/receipt @ rev 23495
updated python-humanize (0.5.1 -> 1.0.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Apr 06 07:04:00 2020 +0100 (2020-04-06) |
parents | 8dd8bab3f0ca |
children | 934055de50e2 |
line diff
1.1 --- a/usbredir/receipt Thu Jan 24 14:51:04 2019 +0100 1.2 +++ b/usbredir/receipt Mon Apr 06 07:04:00 2020 +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 }