htop_3.0.4.bb 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. SUMMARY = "Interactive process viewer"
  2. HOMEPAGE = "https://htop.dev"
  3. SECTION = "console/utils"
  4. LICENSE = "GPLv2"
  5. LIC_FILES_CHKSUM = "file://COPYING;md5=4099d367cd5e59b6d4fc1ee33accb891"
  6. DEPENDS = "ncurses"
  7. SRC_URI = "git://github.com/htop-dev/htop.git \
  8. file://0001-Use-pkg-config.patch \
  9. "
  10. SRCREV = "0b989ee38ce37eb4a50265faa11df2bd7ed8e5c3"
  11. S = "${WORKDIR}/git"
  12. inherit autotools pkgconfig
  13. PACKAGECONFIG ??= " \
  14. unicode \
  15. linux-affinity \
  16. delayacct \
  17. "
  18. PACKAGECONFIG[openvz] = "--enable-openvz,--disable-openvz"
  19. PACKAGECONFIG[vserver] = "--enable-vserver,--disable-vserver"
  20. PACKAGECONFIG[ancient-vserver] = "--enable-ancient-vserver,--disable-ancient-vserver"
  21. PACKAGECONFIG[unicode] = "--enable-unicode,--disable-unicode"
  22. PACKAGECONFIG[hwloc] = "--enable-hwloc,--disable-hwloc,hwloc"
  23. PACKAGECONFIG[linux-affinity] = "--enable-linux-affinity,--disable-linux-affinity"
  24. PACKAGECONFIG[setuid] = "--enable-setuid,--disable-setuid"
  25. PACKAGECONFIG[delayacct] = "--enable-delayacct,--disable-delayacct,libnl"
  26. PACKAGECONFIG[sensors] = "--with-sensors,--without-sensors,lmsensors,lmsensors-libsensors"
  27. FILES_${PN} += "${datadir}/icons/hicolor/scalable/apps/htop.svg"