wok view usbredir/receipt @ 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 8dd8bab3f0ca
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="usbredir"
4 VERSION="0.8.0"
5 CATEGORY="network"
6 SHORT_DESC="A protocol to send USB traffic over a network connection."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="https://www.spice-space.org/usbredir.html"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://spice-space.org/download/usbredir/$TARBALL"
14 DEPENDS="libusb"
15 BUILD_DEPENDS="glib libusb-dev pkg-config"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/sbin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }