aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/stress.rb12
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