added my Recipes
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
From 544df0f5fd99925a3ce568c777413e0c31cb0028 Mon Sep 17 00:00:00 2001
|
||||
From: Jose Quaresma <jose.quaresma@foundries.io>
|
||||
Date: Mon, 2 Jan 2023 15:32:39 +0000
|
||||
Subject: [PATCH] build: Do not build .sgml file
|
||||
|
||||
It needs docbook2man tool which we do not have recipe for
|
||||
|
||||
Upstream-Status: Inappropriate [needs native docbook2man tool]
|
||||
|
||||
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
|
||||
---
|
||||
src/Makefile | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/Makefile b/src/Makefile
|
||||
index ac726d0..af6281d 100644
|
||||
--- a/src/Makefile
|
||||
+++ b/src/Makefile
|
||||
@@ -102,7 +102,7 @@ $(PACKAGENAME)-compressed: $(PACKAGENAME)-static
|
||||
upx -9 -o $@ $<
|
||||
|
||||
$(PACKAGENAME).1: $(PACKAGENAME).sgml
|
||||
- docbook2man $<
|
||||
+ @echo "Needs docbook2man"
|
||||
|
||||
pci.ids:
|
||||
wget http://pciids.sourceforge.net/pci.ids
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
DESCRIPTION = "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 or EFI systems."
|
||||
SUMMARY = "Hardware lister"
|
||||
HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter"
|
||||
SECTION = "console/tools"
|
||||
|
||||
LICENSE = "GPL-2.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
||||
|
||||
COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64|riscv64).*-linux"
|
||||
|
||||
PV .= "+git${SRCPV}"
|
||||
SRCREV = "42fef565731411a784101de614a54bff79d1858e"
|
||||
SRC_URI = " \
|
||||
git://github.com/lyonel/lshw.git;protocol=https;branch=master \
|
||||
file://0001-disable-docbook2man.patch \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit pkgconfig
|
||||
|
||||
DEPENDS = "gettext-native"
|
||||
|
||||
PACKAGECONFIG ??= "zlib"
|
||||
PACKAGECONFIG[sqlite] = "SQLITE=1,SQLITE=0,sqlite3"
|
||||
PACKAGECONFIG[zlib] = "ZLIB=1,ZLIB=0,zlib gzip-native"
|
||||
|
||||
# use the PACKAGECONFIG configurations arguments
|
||||
EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS}"
|
||||
|
||||
do_compile() {
|
||||
# build core only - don't ship gui
|
||||
oe_runmake -C src core
|
||||
}
|
||||
|
||||
do_install() {
|
||||
oe_runmake install DESTDIR=${D}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
Reference in New Issue
Block a user