You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2019 Lucian Cristain <lucian.cristian@gmail.com>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=powertop
  9. PKG_VERSION:=2.10
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://01.org/sites/default/files/downloads/
  13. PKG_HASH:=d3b7459eaba7d01c8841dd33a3b4d369416c01e9bd8951b0d88234cf18fe4a75
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION)
  15. PKG_MAINTAINER:=Lucian Cristain <lucian.cristian@gmail.com>
  16. PKG_LICENSE:=GPL-2.0
  17. PKG_BUILD_PARALLEL:=1
  18. PKG_INSTALL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/powertop
  21. SECTION:=utils
  22. CATEGORY:=Utilities
  23. DEPENDS:=+libpci +libncursesw +libnl-genl +libstdcpp
  24. TITLE:=Power consumption monitor
  25. URL:=https://01.org/powertop
  26. endef
  27. define Package/powertop/description
  28. PowerTOP is a Linux tool to diagnose issues with power consumption
  29. and power management.
  30. endef
  31. define Package/powertop/install
  32. $(INSTALL_DIR) $(1)/usr/sbin
  33. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/powertop \
  34. $(1)/usr/sbin/
  35. endef
  36. $(eval $(call BuildPackage,powertop))