- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
25 lines
638 B
BlitzBasic
25 lines
638 B
BlitzBasic
SUMMARY = "cui/gui tool for tuning of running processes"
|
|
HOMEPAGE = "https://rt.wiki.kernel.org/index.php/Tuna"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6"
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/utils/tuna/tuna.git;branch=main"
|
|
|
|
SRCREV = "b972b8ce386c29bcbcd45029a617db3db9e5b6ca"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-io \
|
|
python3-linux-procfs \
|
|
python3-logging \
|
|
python3-six \
|
|
"
|
|
|
|
inherit setuptools3
|
|
|
|
do_install:append() {
|
|
install -m 0755 -d ${D}${bindir}
|
|
install -m 0755 ${S}/tuna-cmd.py ${D}${bindir}/tuna
|
|
}
|