summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/iotop/iotop_1.26.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-02-06 16:02:11 +0800
committerKhem Raj <raj.khem@gmail.com>2024-02-09 09:52:09 -0800
commit41b210079fdeeb3ed547a3d3f19cdb3235a5e2f2 (patch)
treee540e95a247ae73301a304155cd3106fb78653d8 /meta-oe/recipes-extended/iotop/iotop_1.26.bb
parenta178f67d972b6f0c07d0a5284760a56301bbe4ba (diff)
downloadmeta-openembedded-41b210079fdeeb3ed547a3d3f19cdb3235a5e2f2.tar.gz
iotop: upgrade 1.25 -> 1.26
Changelog: Add clock in upper right corner License-Update: Copyright year updated to 2024. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/iotop/iotop_1.26.bb')
-rw-r--r--meta-oe/recipes-extended/iotop/iotop_1.26.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/iotop/iotop_1.26.bb b/meta-oe/recipes-extended/iotop/iotop_1.26.bb
new file mode 100644
index 0000000000..9b36b57cb7
--- /dev/null
+++ b/meta-oe/recipes-extended/iotop/iotop_1.26.bb
@@ -0,0 +1,25 @@
1SUMMARY = "A top utility for I/O"
2LICENSE = "GPL-2.0-or-later"
3LIC_FILES_CHKSUM = "file://LICENSE;md5=686f457fedcecd9b92d69e625291ffa2"
4
5DEPENDS = "ncurses"
6
7SRC_URI = "git://github.com/Tomas-M/iotop.git;branch=master;protocol=https"
8SRCREV = "b15743b04bb04ff1fc6e197d21ba30365349edcb"
9
10S = "${WORKDIR}/git"
11
12inherit pkgconfig
13
14EXTRA_OEMAKE = "V=1 STRIP=true"
15# Fixes llvm-bc70b5.o: can't link soft-float modules with double-float modules
16EXTRA_OEMAKE:append:toolchain-clang:riscv64 = " NO_FLTO=1"
17EXTRA_OEMAKE:append:toolchain-clang:riscv32 = " NO_FLTO=1"
18
19# Workaround BFD linker crash with clang on arm
20# revisit when upgrading binutils and see if its fixed
21LDFLAGS:append:toolchain-clang:arm = " -fuse-ld=lld"
22
23do_install() {
24 oe_runmake install DESTDIR=${D}
25}