wok diff libusb/receipt @ rev 22042
gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Oct 22 12:55:54 2019 +0300 (2019-10-22) |
parents | e733e84558bd |
children | 6616b8e3cfe1 |
line diff
1.1 --- a/libusb/receipt Fri Jul 21 16:38:46 2017 +0200 1.2 +++ b/libusb/receipt Tue Oct 22 12:55:54 2019 +0300 1.3 @@ -1,24 +1,27 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libusb" 1.7 -VERSION="1.0.18" 1.8 +VERSION="1.0.22" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="USB access library." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="LGPL2.1" 1.13 +WEB_SITE="https://libusb.info/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 -WEB_SITE="http://libusb.sourceforge.net/" 1.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.18 -HOST_ARCH="i486 arm" 1.19 +WGET_URL="https/github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" 1.20 1.21 DEPENDS="udev" 1.22 BUILD_DEPENDS="udev-dev" 1.23 1.24 +HOST_ARCH="i486 arm" 1.25 + 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 ./configure $CONFIGURE_ARGS && 1.30 - make && make install 1.31 + make -j 1 && 1.32 + make install 1.33 } 1.34 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 @@ -27,4 +30,3 @@ 1.37 mkdir -p $fs/usr/lib 1.38 cp -a $install/usr/lib/*.so* $fs/usr/lib 1.39 } 1.40 -