jow b2d0eff6d4 [PATCH] New package CPUsage
Add CPUsage to /utils

CPUsage is a small utility to dump the CPU usage every second.
This version can write CSV output.

Signed-off-by: Florian Sesser <sesser@in.tum.de>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@26792 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-04-29 15:45:52 +00:00

48 lines
1.3 KiB
Makefile

#
# Copyright (C) 2005 Fabian Schneider, 2010 Florian Sesser, TU Muenchen
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
include $(TOPDIR)/rules.mk
PKG_NAME:=cpusage
PKG_VERSION:=0.31
PKG_BUILD_DIR:=$(BUILD_DIR)/cpusage
include $(INCLUDE_DIR)/package.mk
define Package/cpusage
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Outputs CPU usage statistics once per second
URL:=http://www.net.t-labs.tu-berlin.de/~fabian/proj_en.html\#cpusage
endef
define Package/cpusage/description
CPUsage outputs CPU usage statistics once per second.
Optionally writes CSV output (see '-o' option).
Written by Fabian Schneider (TUM, TUB) in 2005.
Timestamp and CSV-compliance by Florian Sesser (TUM), 2010.
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) src/* $(PKG_BUILD_DIR)/
endef
TARGET_CFLAGS += $(FPIC)
define Build/Compile
$(TARGET_CC) $(TARGET_CFLAGS) -D__Linux26__ -D_BSD_SOURCE=1 -c -I$(PKG_BUILD_DIR) -I$(STAGING_DIR)/usr/include -o $(PKG_BUILD_DIR)/cpusage.o $(PKG_BUILD_DIR)/cpusage.c
$(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/cpusage -L$(STAGING_DIR)/usr/lib $(PKG_BUILD_DIR)/cpusage.o
endef
define Package/cpusage/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/cpusage $(1)/usr/bin/
endef
$(eval $(call BuildPackage,cpusage))