sdmon: add new package

Signed-off-by: Daniel Ammann <daniel.ammann@bytesatwork.ch>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Daniel Ammann
2024-02-26 12:45:32 +01:00
committed by Khem Raj
parent 0e18a0cea9
commit 89cd053863
2 changed files with 21 additions and 0 deletions
@@ -874,6 +874,7 @@ RDEPENDS:packagegroup-meta-oe-support ="\
raptor2 \ raptor2 \
rdfind \ rdfind \
re2 \ re2 \
sdmon \
sdparm \ sdparm \
serial-forward \ serial-forward \
read-edid \ read-edid \
@@ -0,0 +1,20 @@
SUMMARY = "Get SD card health data"
HOMEPAGE = "https://github.com/Ognian/sdmon"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "git://github.com/Ognian/sdmon;protocol=https;branch=master"
PV = "0.8.1+git"
SRCREV = "ef1aec457f04a50721f0259651cca9c946f11390"
S = "${WORKDIR}/git"
do_compile() {
oe_runmake -C ${S}/src CC="${CC}" CFLAGS="${CFLAGS} -D_REENTRANT -DVERSION=\"\\\"${PV}\\\"\"" LDFLAGS="${LDFLAGS}"
}
do_install() {
install -Dm 0755 ${S}/src/sdmon ${D}${bindir}/sdmon
}