2010-02-12 15:38:58 +00:00
|
|
|
#
|
2011-11-18 23:13:51 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2010-02-12 15:38:58 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=powertop
|
|
|
|
PKG_VERSION:=1.11
|
2011-11-18 23:13:51 +00:00
|
|
|
PKG_RELEASE:=2
|
2010-02-12 15:38:58 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://www.lesswatts.org/projects/powertop/download/
|
|
|
|
PKG_MD5SUM:=3498f5983c683c3a57dce7379a722082
|
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
2012-06-11 21:18:33 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2010-02-12 15:38:58 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/powertop
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=PowerTOP
|
2011-11-18 23:13:51 +00:00
|
|
|
DEPENDS:=+libncurses
|
2010-02-12 15:38:58 +00:00
|
|
|
URL:=http://www.lesswatts.org
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/powertop/description
|
2014-03-27 07:04:06 +00:00
|
|
|
PowerTOP is a Linux tool that helps you find those programs that are
|
2011-11-18 23:13:51 +00:00
|
|
|
misbehaving while your computer is idle.
|
2010-02-12 15:38:58 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/powertop/install
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,powertop))
|