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>
This commit is contained in:
parent
f8f0d0cfa2
commit
5d668b08c9
1 changed files with 12 additions and 0 deletions
12
Formula/stress.rb
Normal file
12
Formula/stress.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue