diff options
Diffstat (limited to 'meta-oe/recipes-devtools/lshw/lshw_02.18.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/lshw/lshw_02.18.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/lshw/lshw_02.18.bb b/meta-oe/recipes-devtools/lshw/lshw_02.18.bb new file mode 100644 index 0000000000..b344fbf326 --- /dev/null +++ b/meta-oe/recipes-devtools/lshw/lshw_02.18.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | DESCRIPTION = "A small tool to provide detailed information on the hardware \ | ||
| 2 | configuration of the machine. It can report exact memory configuration, \ | ||
| 3 | firmware version, mainboard configuration, CPU version and speed, cache \ | ||
| 4 | configuration, bus speed, etc. on DMI-capable or EFI systems." | ||
| 5 | SUMMARY = "Hardware lister" | ||
| 6 | HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter" | ||
| 7 | SECTION = "console/tools" | ||
| 8 | |||
| 9 | LICENSE = "GPLv2+" | ||
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 11 | |||
| 12 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" | ||
| 13 | |||
| 14 | SRC_URI = " \ | ||
| 15 | http://ezix.org/software/files/lshw-B.${PV}.tar.gz \ | ||
| 16 | file://0001-Makefile-Fix-cross-compilation.patch \ | ||
| 17 | file://0002-Makefile-Use-supplied-LDFLAGS-to-silence-OE-GNU_HASH.patch \ | ||
| 18 | file://0003-sysfs-Fix-basename-build-with-musl.patch \ | ||
| 19 | " | ||
| 20 | SRC_URI[md5sum] = "8671c6d94d6324a744b7f21f1bfecfd2" | ||
| 21 | SRC_URI[sha256sum] = "ae22ef11c934364be4fd2a0a1a7aadf4495a0251ec6979da280d342a89ca3c2f" | ||
| 22 | |||
| 23 | S = "${WORKDIR}/lshw-B.${PV}" | ||
| 24 | |||
| 25 | do_compile() { | ||
| 26 | # build core only - don't ship gui | ||
| 27 | oe_runmake -C src core | ||
| 28 | } | ||
| 29 | |||
| 30 | do_install() { | ||
| 31 | oe_runmake install DESTDIR=${D} | ||
| 32 | } | ||
