aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/httperf.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/httperf.rb b/Library/Formula/httperf.rb
new file mode 100644
index 000000000..41f830289
--- /dev/null
+++ b/Library/Formula/httperf.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class Httperf <Formula
+ url 'ftp://ftp.hpl.hp.com/pub/httperf/httperf-0.9.0.tar.gz'
+ homepage 'http://www.hpl.hp.com/research/linux/httperf/'
+ md5 '2968c36b9ecf3d98fc1f2c1c9c0d9341'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end