diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2024-01-23 08:58:23 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-01-22 18:02:27 -0800 |
commit | 110667ac3798b5b64552cb4b8dc706aad8fbcdfe (patch) | |
tree | 61167b346551c60f3d1dc107a4f6e33545527dfb /meta-oe/recipes-support/htop/htop_3.3.0.bb | |
parent | d34f54d0876abe045a3201e6a518326dfebf5524 (diff) | |
download | meta-openembedded-110667ac3798b5b64552cb4b8dc706aad8fbcdfe.tar.gz |
htop: upgrade 3.2.2 -> 3.3.0
0001-Use-pkg-config.patch
refreshed for 3.3.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/htop/htop_3.3.0.bb')
-rw-r--r-- | meta-oe/recipes-support/htop/htop_3.3.0.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/htop/htop_3.3.0.bb b/meta-oe/recipes-support/htop/htop_3.3.0.bb new file mode 100644 index 000000000..cd5b766f0 --- /dev/null +++ b/meta-oe/recipes-support/htop/htop_3.3.0.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | SUMMARY = "Interactive process viewer" | ||
2 | HOMEPAGE = "https://htop.dev" | ||
3 | SECTION = "console/utils" | ||
4 | LICENSE = "GPL-2.0-only" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
6 | |||
7 | DEPENDS = "ncurses" | ||
8 | |||
9 | SRC_URI = "git://github.com/htop-dev/htop.git;branch=main;protocol=https \ | ||
10 | file://0001-Use-pkg-config.patch \ | ||
11 | " | ||
12 | SRCREV = "68c970c7ef4a0682760ed570b3d82388ae7ccf54" | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | inherit autotools pkgconfig | ||
17 | |||
18 | PACKAGECONFIG ??= " \ | ||
19 | unicode \ | ||
20 | affinity \ | ||
21 | delayacct \ | ||
22 | " | ||
23 | PACKAGECONFIG[unicode] = "--enable-unicode,--disable-unicode" | ||
24 | PACKAGECONFIG[affinity] = "--enable-affinity,--disable-affinity,,,,hwloc" | ||
25 | PACKAGECONFIG[unwind] = "--enable-unwind,--disable-unwind,libunwind" | ||
26 | PACKAGECONFIG[hwloc] = "--enable-hwloc,--disable-hwloc,hwloc,,,affinity" | ||
27 | PACKAGECONFIG[openvz] = "--enable-openvz,--disable-openvz" | ||
28 | PACKAGECONFIG[vserver] = "--enable-vserver,--disable-vserver" | ||
29 | PACKAGECONFIG[ancient-vserver] = "--enable-ancient-vserver,--disable-ancient-vserver" | ||
30 | PACKAGECONFIG[capabilities] = "--enable-capabilities,--disable-capabilities,libcap" | ||
31 | PACKAGECONFIG[delayacct] = "--enable-delayacct,--disable-delayacct,libnl" | ||
32 | PACKAGECONFIG[sensors] = "--enable-sensors,--disable-sensors,lmsensors,lmsensors-libsensors" | ||
33 | |||
34 | FILES:${PN} += "${datadir}/icons/hicolor/scalable/apps/htop.svg" | ||
35 | |||
36 | RDEPENDS:${PN} += "ncurses-terminfo-base" | ||