mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-13 06:41:35 +00:00
Changelog: ============ * Consolidate ClockMeter code into DateTimeMeter code * Darwin: Fix unsigned underflow in memory meter on ARM64 (Apple Silicon 16K pages showing ~64TB used) * Linux/PCP: Replace M_SHARE (SHR) with M_PRIV (PRIV) in default Main screen columns * PCP: Fix dynamic screen column (instance) sorting (incorrect cast and field offsets) * PCP: Fix units used when printing M_PRIV memory column values * PCP: Add Darwin swap metric values and a fallback on Linux for SwapMeter * Fix null pointer dereference in actionBacktrace() (GCC LTO -O2 -flto, Ubuntu 24.04) * Make search function activate following on find consistently * Make a panel click abort the search function Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
38 lines
1.4 KiB
BlitzBasic
38 lines
1.4 KiB
BlitzBasic
SUMMARY = "Interactive process viewer"
|
|
HOMEPAGE = "https://htop.dev"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
DEPENDS = "ncurses libnl"
|
|
|
|
SRC_URI = "git://github.com/htop-dev/htop.git;branch=main;protocol=https;tag=${PV} \
|
|
file://0001-configure.ac-Remove-usr-include-libnl3.patch \
|
|
"
|
|
SRCREV = "82841011ac3e2ec6ee4d3dbdf80f8d26797abbc6"
|
|
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
CFLAGS += " -I${STAGING_INCDIR}/libnl3"
|
|
|
|
PACKAGECONFIG ??= " \
|
|
unicode \
|
|
affinity \
|
|
delayacct \
|
|
"
|
|
PACKAGECONFIG[unicode] = "--enable-unicode,--disable-unicode"
|
|
PACKAGECONFIG[affinity] = "--enable-affinity,--disable-affinity,,,,hwloc"
|
|
PACKAGECONFIG[unwind] = "--with-libunwind,--without-libunwind,libunwind"
|
|
PACKAGECONFIG[hwloc] = "--enable-hwloc,--disable-hwloc,hwloc,,,affinity"
|
|
PACKAGECONFIG[openvz] = "--enable-openvz,--disable-openvz"
|
|
PACKAGECONFIG[vserver] = "--enable-vserver,--disable-vserver"
|
|
PACKAGECONFIG[ancient-vserver] = "--enable-ancient-vserver,--disable-ancient-vserver"
|
|
PACKAGECONFIG[capabilities] = "--enable-capabilities,--disable-capabilities,libcap"
|
|
PACKAGECONFIG[delayacct] = "--enable-delayacct,--disable-delayacct,libnl"
|
|
PACKAGECONFIG[sensors] = "--enable-sensors,--disable-sensors,lmsensors,lmsensors-libsensors"
|
|
|
|
FILES:${PN} += "${datadir}/icons/hicolor/scalable/apps/htop.svg"
|
|
|
|
RDEPENDS:${PN} += "ncurses-terminfo-base"
|