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