wok-current rev 21329
updated libusb and libusb-dev (1.0.18 -> 1.0.22)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 19 10:39:59 2019 +0100 (2019-04-19) |
parents | 81242ce6ec71 |
children | 655d019e5906 |
files | libusb-dev/receipt libusb/receipt |
line diff
1.1 --- a/libusb-dev/receipt Fri Apr 19 10:28:08 2019 +0100 1.2 +++ b/libusb-dev/receipt Fri Apr 19 10:39:59 2019 +0100 1.3 @@ -1,23 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libusb-dev" 1.7 -VERSION="1.0.18" 1.8 +VERSION="1.0.22" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="USB access library devel files." 1.11 +SHORT_DESC="USB access library - development files." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 +WEB_SITE="https://libusb.info/" 1.15 + 1.16 WANTED="libusb" 1.17 -WEB_SITE="http://libusb.sourceforge.net/" 1.18 +DEPENDS="libusb libusb-compat-dev pkg-config" 1.19 + 1.20 HOST_ARCH="i486 arm" 1.21 1.22 -DEPENDS="libusb pkg-config libusb-compat-dev" 1.23 - 1.24 # Rules to gen a SliTaz package suitable for Tazpkg. 1.25 genpkg_rules() 1.26 { 1.27 mkdir -p $fs/usr/lib 1.28 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.29 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.30 - cp -a $install/usr/include $fs/usr 1.31 + 1.32 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.33 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.34 + cp -a $install/usr/include $fs/usr 1.35 } 1.36 -
2.1 --- a/libusb/receipt Fri Apr 19 10:28:08 2019 +0100 2.2 +++ b/libusb/receipt Fri Apr 19 10:39:59 2019 +0100 2.3 @@ -1,24 +1,27 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libusb" 2.7 -VERSION="1.0.18" 2.8 +VERSION="1.0.22" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="USB access library." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 LICENSE="LGPL2.1" 2.13 +WEB_SITE="https://libusb.info/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.16 -WEB_SITE="http://libusb.sourceforge.net/" 2.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.18 -HOST_ARCH="i486 arm" 2.19 +WGET_URL="https/github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" 2.20 2.21 DEPENDS="udev" 2.22 BUILD_DEPENDS="udev-dev" 2.23 2.24 +HOST_ARCH="i486 arm" 2.25 + 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 ./configure $CONFIGURE_ARGS && 2.30 - make && make install 2.31 + make -j 1 && 2.32 + make install 2.33 } 2.34 2.35 # Rules to gen a SliTaz package suitable for Tazpkg. 2.36 @@ -27,4 +30,3 @@ 2.37 mkdir -p $fs/usr/lib 2.38 cp -a $install/usr/lib/*.so* $fs/usr/lib 2.39 } 2.40 -