2009-09-20 12:14:28 +00:00
|
|
|
#
|
2010-01-03 20:57:04 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2007-07-31 20:38:28 +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:=stress
|
2010-04-09 01:54:48 +00:00
|
|
|
PKG_VERSION:=1.0.4
|
2007-07-31 20:38:28 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2010-02-19 04:46:26 +00:00
|
|
|
PKG_SOURCE_URL:=http://weather.ou.edu/~apw/projects/stress
|
2010-04-09 01:54:48 +00:00
|
|
|
PKG_MD5SUM:=a607afa695a511765b40993a64c6e2f4
|
2010-01-03 20:57:04 +00:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
2007-07-31 20:38:28 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/stress
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2010-10-05 23:56:19 +00:00
|
|
|
DEPENDS:=@!LINUX_2_4
|
2007-07-31 20:38:28 +00:00
|
|
|
TITLE:=stress is a simple stress utility
|
|
|
|
URL:=http://weather.ou.edu/~apw/projects/stress/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/stress/description
|
2010-04-09 01:54:48 +00:00
|
|
|
stress is a simple tool that imposes certain types of compute \ stress on
|
|
|
|
UNIX-like operating systems.
|
2007-10-14 04:32:56 +00:00
|
|
|
endef
|
|
|
|
|
2007-07-31 20:38:28 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--prefix="/usr"
|
|
|
|
|
|
|
|
MAKE_FLAGS += \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)"
|
|
|
|
|
|
|
|
define Package/stress/install
|
2008-07-05 10:23:59 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2010-02-19 04:46:26 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/stress $(1)/usr/bin/
|
2007-07-31 20:38:28 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,stress))
|