# HG changeset patch # User Hans-G?nter Theisgen # Date 1648617260 -3600 # Node ID 7fb34513be293a5349989f51f649b83416d59106 # Parent 8b7f75d0e08e74e26a8edf1a5590c3bd11d93ac4 updated lshw (8.02.18 -> 8.02.19.2) diff -r 8b7f75d0e08e -r 7fb34513be29 lshw/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lshw/description.txt Wed Mar 30 06:14:20 2022 +0100 @@ -0,0 +1,5 @@ +Lshw (Hardware Lister) is a small tool to provide detailed information +on the hardware configuration of the machine. +It can report exact memory configuration, firmware version, mainboard +configuration, CPU version and speed, cache configuration, bus speed, etc. +on DMI-capable x86 or EFI (IA-64) systems and on some PowerPC machines. diff -r 8b7f75d0e08e -r 7fb34513be29 lshw/receipt --- a/lshw/receipt Tue Mar 29 17:47:08 2022 +0100 +++ b/lshw/receipt Wed Mar 30 06:14:20 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="lshw" -VERSION="B.02.18" +VERSION="B.02.19.2" CATEGORY="system-tools" SHORT_DESC="Hardware Lister." MAINTAINER="erjo@slitaz.org" @@ -23,21 +23,18 @@ # Rules to configure and make the package. compile_rules() { - cd $PACKAGE-$VERSION sed -i 's/hwNode::hwNode/hwNode/' src/core/scsi.cc grep -qs 'define u8' src/core/scsi.cc src/core/burner.cc || sed -i 's|#include |#define u8 __u8\n&|' \ src/core/scsi.cc src/core/burner.cc - make -j 1 && - make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share - - cp -a $install/usr/sbin $fs/usr - cp -a $install/usr/share/lshw $fs/usr/share + cook_copy_folders sbin + cook_copy_folders lshw }