diff options
author | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
---|---|---|
committer | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
commit | 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch) | |
tree | b9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/stress |
Initial import
Diffstat (limited to 'package/stress')
-rw-r--r-- | package/stress/Config.in | 12 | ||||
-rw-r--r-- | package/stress/Makefile | 26 | ||||
-rw-r--r-- | package/stress/ipkg/stress.control | 4 |
3 files changed, 42 insertions, 0 deletions
diff --git a/package/stress/Config.in b/package/stress/Config.in new file mode 100644 index 000000000..66c6bd446 --- /dev/null +++ b/package/stress/Config.in @@ -0,0 +1,12 @@ +config ADK_PACKAGE_STRESS + prompt "stress............................ Stress your system" + tristate + default n + help + Stress is a simple tool that imposes a configurable amount of CPU, + memory, I/O, and disk stress on POSIX-compliant operating systems. + It is written in portable ANSI C and uses the GNU Autotools to + compile on most UNIX-like operating systems. It is free software, + licensed under the GNU GPL + + http://weather.ou.edu/~apw/projects/stress/ diff --git a/package/stress/Makefile b/package/stress/Makefile new file mode 100644 index 000000000..2844ab26d --- /dev/null +++ b/package/stress/Makefile @@ -0,0 +1,26 @@ +# $Id$ +#- +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include ${TOPDIR}/rules.mk + +PKG_NAME:= stress +PKG_VERSION:= 1.0.0 +PKG_RELEASE:= 1 +PKG_MD5SUM:= d693ff044ac7d34f8aaea202cd96f679 +MASTER_SITES:= http://weather.ou.edu/~apw/projects/stress/ + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,STRESS,stress,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) + +CONFIGURE_STYLE:= gnu +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_STRESS}/usr/bin/ + ${INSTALL_BIN} ${WRKINST}/usr/bin/stress ${IDIR_STRESS}/usr/bin/ + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/stress/ipkg/stress.control b/package/stress/ipkg/stress.control new file mode 100644 index 000000000..3321d6e8f --- /dev/null +++ b/package/stress/ipkg/stress.control @@ -0,0 +1,4 @@ +Package: stress +Priority: optional +Section: utilities +Description: stress is a simple tool that imposes certain types of compute stress on UNIX-like operating systems. |