# HG changeset patch # User Hans-G?nter Theisgen # Date 1555666799 -3600 # Node ID 82030d5e8b0a54a8aaaa3c9913327623bc93a6d1 # Parent 81242ce6ec71924ef8da0cdaf676c5b56528d7a4 updated libusb and libusb-dev (1.0.18 -> 1.0.22) diff -r 81242ce6ec71 -r 82030d5e8b0a libusb-dev/receipt --- a/libusb-dev/receipt Fri Apr 19 10:28:08 2019 +0100 +++ b/libusb-dev/receipt Fri Apr 19 10:39:59 2019 +0100 @@ -1,23 +1,24 @@ # SliTaz package receipt. PACKAGE="libusb-dev" -VERSION="1.0.18" +VERSION="1.0.22" CATEGORY="development" -SHORT_DESC="USB access library devel files." +SHORT_DESC="USB access library - development files." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" +WEB_SITE="https://libusb.info/" + WANTED="libusb" -WEB_SITE="http://libusb.sourceforge.net/" +DEPENDS="libusb libusb-compat-dev pkg-config" + HOST_ARCH="i486 arm" -DEPENDS="libusb pkg-config libusb-compat-dev" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } - diff -r 81242ce6ec71 -r 82030d5e8b0a libusb/receipt --- a/libusb/receipt Fri Apr 19 10:28:08 2019 +0100 +++ b/libusb/receipt Fri Apr 19 10:39:59 2019 +0100 @@ -1,24 +1,27 @@ # SliTaz package receipt. PACKAGE="libusb" -VERSION="1.0.18" +VERSION="1.0.22" CATEGORY="system-tools" SHORT_DESC="USB access library." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" +WEB_SITE="https://libusb.info/" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="http://libusb.sourceforge.net/" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -HOST_ARCH="i486 arm" +WGET_URL="https/github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" DEPENDS="udev" BUILD_DEPENDS="udev-dev" +HOST_ARCH="i486 arm" + # Rules to configure and make the package. compile_rules() { ./configure $CONFIGURE_ARGS && - make && make install + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -27,4 +30,3 @@ mkdir -p $fs/usr/lib cp -a $install/usr/lib/*.so* $fs/usr/lib } -