aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSebastian Cohnen2010-07-12 20:35:48 +0200
committerAdam Vandenberg2010-07-12 11:57:39 -0700
commit7136978c0a06eaa7160c818e95922b89ce7f8f95 (patch)
tree1b57f3b9c0affe0c21992e5e9e1f9991e8e85a89 /Library
parente09f51f3b0dc0e66ee02913123c5bfb5bc8a57ea (diff)
downloadhomebrew-7136978c0a06eaa7160c818e95922b89ce7f8f95.tar.bz2
New formula for Tsung, the open-source multi-protocol distributed load testing tool
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/tsung.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/tsung.rb b/Library/Formula/tsung.rb
new file mode 100644
index 000000000..2380e8436
--- /dev/null
+++ b/Library/Formula/tsung.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Tsung <Formula
+ url 'http://tsung.erlang-projects.org/dist/tsung-1.3.2.tar.gz'
+ homepage 'http://tsung.erlang-projects.org/'
+ md5 '6de503c41e608b25e4fe8fb058edc9cc'
+
+ depends_on 'erlang'
+ depends_on 'gnuplot'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make"
+ ENV.j1
+ system "make install"
+ end
+end