wok-current rev 24863
updated lshw (8.02.18 -> 8.02.19.2)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 30 06:14:20 2022 +0100 (2022-03-30) |
parents | 8b7f75d0e08e |
children | 3c68bcd9c4a4 |
files | lshw/description.txt lshw/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/lshw/description.txt Wed Mar 30 06:14:20 2022 +0100 1.3 @@ -0,0 +1,5 @@ 1.4 +Lshw (Hardware Lister) is a small tool to provide detailed information 1.5 +on the hardware configuration of the machine. 1.6 +It can report exact memory configuration, firmware version, mainboard 1.7 +configuration, CPU version and speed, cache configuration, bus speed, etc. 1.8 +on DMI-capable x86 or EFI (IA-64) systems and on some PowerPC machines.
2.1 --- a/lshw/receipt Tue Mar 29 17:47:08 2022 +0100 2.2 +++ b/lshw/receipt Wed Mar 30 06:14:20 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="lshw" 2.7 -VERSION="B.02.18" 2.8 +VERSION="B.02.19.2" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="Hardware Lister." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 @@ -23,21 +23,18 @@ 2.13 # Rules to configure and make the package. 2.14 compile_rules() 2.15 { 2.16 - cd $PACKAGE-$VERSION 2.17 sed -i 's/hwNode::hwNode/hwNode/' src/core/scsi.cc 2.18 grep -qs 'define u8' src/core/scsi.cc src/core/burner.cc || 2.19 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' \ 2.20 src/core/scsi.cc src/core/burner.cc 2.21 2.22 - make -j 1 && 2.23 - make DESTDIR=$DESTDIR install 2.24 + make && 2.25 + make install DESTDIR=$DESTDIR 2.26 } 2.27 2.28 # Rules to gen a SliTaz package suitable for Tazpkg. 2.29 genpkg_rules() 2.30 { 2.31 - mkdir -p $fs/usr/share 2.32 - 2.33 - cp -a $install/usr/sbin $fs/usr 2.34 - cp -a $install/usr/share/lshw $fs/usr/share 2.35 + cook_copy_folders sbin 2.36 + cook_copy_folders lshw 2.37 }