diff options
| author | Chris Flöß | 2011-07-07 18:58:01 +0200 |
|---|---|---|
| committer | Jack Nagel | 2011-09-16 19:19:01 -0500 |
| commit | 1633524e14232a18fd3b65f63b1d3e25d0b25dd7 (patch) | |
| tree | 8088554e6680f2055621649c297c973fbe08c552 | |
| parent | 92cb3f96bf78123d23146955dd8c59e381a44f06 (diff) | |
| download | homebrew-1633524e14232a18fd3b65f63b1d3e25d0b25dd7.tar.bz2 | |
New formula: stress 1.0.4
From the developer: "stress is a deliberately simple workload generator
for POSIX systems. It imposes a configurable amount of CPU, memory, I/O,
and disk stress on the system. It is written in C, and is free software
licensed under the GPLv2"
I created this formula because it serves a simple but specific purpose
and is regularly available on Linux *BSD system.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/stress.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/stress.rb b/Library/Formula/stress.rb new file mode 100644 index 000000000..e0cb70b22 --- /dev/null +++ b/Library/Formula/stress.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Stress < Formula + url 'http://weather.ou.edu/~apw/projects/stress/stress-1.0.4.tar.gz' + homepage 'http://weather.ou.edu/~apw/projects/stress/' + md5 'a607afa695a511765b40993a64c6e2f4' + + def install + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
