From: pavlov Date: Tue, 31 Jul 2007 20:38:28 +0000 (+0000) Subject: stress: bring in stress, modified patch from ticket:1777 -- now honors copts X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=a4cd432c308979dd59eb7d080961703ca0ebadfd;p=packages.git stress: bring in stress, modified patch from ticket:1777 -- now honors copts git-svn-id: svn://svn.openwrt.org/openwrt/packages@8287 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/utils/stress/Makefile b/utils/stress/Makefile new file mode 100644 index 000000000..aa6ff9beb --- /dev/null +++ b/utils/stress/Makefile @@ -0,0 +1,45 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=stress +PKG_VERSION:=0.18.9 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://weather.ou.edu/~apw/projects/stress/ +PKG_MD5SUM:=e6fba31fbac8d0a1b359c7e25cba8e3f +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/stress + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=@LINUX_2_6_X86 + TITLE:=stress is a simple stress utility + DESCRIPTION:=\ + stress is a simple tool that imposes certain types of compute \ + stress on UNIX-like operating systems. + URL:=http://weather.ou.edu/~apw/projects/stress/ +endef + +CONFIGURE_ARGS += \ + --prefix="/usr" + +MAKE_FLAGS += \ + CFLAGS="$(TARGET_CFLAGS)" + +define Package/stress/install + install -d -m0755 $(1)/usr/bin + install -m0755 $(PKG_BUILD_DIR)/src/stress $(1)/usr/bin +endef + +$(eval $(call BuildPackage,stress))