5d668b08c9
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>
12 lines
342 B
Ruby
12 lines
342 B
Ruby
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
|