xtables-addons: FreeBSD build fix
[feed/packages.git] / utils / powertop / Makefile
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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=powertop
11 PKG_VERSION:=2.10
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://01.org/sites/default/files/downloads/
16 PKG_HASH:=d3b7459eaba7d01c8841dd33a3b4d369416c01e9bd8951b0d88234cf18fe4a75
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION)
19 PKG_MAINTAINER:=Lucian Cristain <lucian.cristian@gmail.com>
20 PKG_LICENSE:=GPL-2.0
21
22 PKG_BUILD_PARALLEL:=1
23 PKG_INSTALL:=1
24
25 include $(INCLUDE_DIR)/uclibc++.mk
26 include $(INCLUDE_DIR)/package.mk
27 include $(INCLUDE_DIR)/nls.mk
28
29 define Package/powertop
30 SECTION:=utils
31 CATEGORY:=Utilities
32 DEPENDS:=$(CXX_DEPENDS) $(INTL_DEPENDS) +libpci +libncursesw +libnl-genl
33 TITLE:=Power consumption monitor
34 URL:=https://01.org/powertop
35 endef
36
37 define Package/powertop/description
38 PowerTOP is a Linux tool to diagnose issues with power consumption
39 and power management.
40 endef
41
42 TARGET_CFLAGS += $(FPIC)
43 ifeq ($(CONFIG_USE_UCLIBC),y)
44 TARGET_CFLAGS += -fno-stack-protector
45 endif
46 TARGET_LDFLAGS += $(if $(INTL_FULL),-lintl)
47
48 CONFIGURE_ARGS += --without-pic
49
50 define Package/powertop/install
51 $(INSTALL_DIR) $(1)/usr/sbin
52 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/powertop \
53 $(1)/usr/sbin/
54 endef
55
56 $(eval $(call BuildPackage,powertop))