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.

56 lines
1.4 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:=3
  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)/uclibc++.mk
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/nls.mk
  22. define Package/powertop
  23. SECTION:=utils
  24. CATEGORY:=Utilities
  25. DEPENDS:=$(CXX_DEPENDS) $(INTL_DEPENDS) +libpci +libncursesw +libnl-genl
  26. TITLE:=Power consumption monitor
  27. URL:=https://01.org/powertop
  28. endef
  29. define Package/powertop/description
  30. PowerTOP is a Linux tool to diagnose issues with power consumption
  31. and power management.
  32. endef
  33. TARGET_CFLAGS += $(FPIC)
  34. ifeq ($(CONFIG_USE_UCLIBC),y)
  35. TARGET_CFLAGS += -fno-stack-protector
  36. endif
  37. TARGET_LDFLAGS += $(if $(INTL_FULL),-lintl)
  38. CONFIGURE_ARGS += --without-pic
  39. define Package/powertop/install
  40. $(INSTALL_DIR) $(1)/usr/sbin
  41. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/powertop \
  42. $(1)/usr/sbin/
  43. endef
  44. $(eval $(call BuildPackage,powertop))