wok-next view usbredir/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 8e1b2a143eb3
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="usbredir"
4 VERSION="0.7"
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="http://spice-space.org/download/usbredir/$TARBALL"
14 BUILD_DEPENDS="glib libusb-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS &&
19 fix libtool &&
20 make &&
21 make DESTDIR=$install install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 usbredir)
27 copy @std
28 DEPENDS="libusb"
29 ;;
30 *-dev)
31 copy @dev
32 ;;
33 esac
34 }