diff options
| author | Seth Falcon | 2009-10-12 11:35:25 -0700 |
|---|---|---|
| committer | Seth Falcon | 2009-10-12 11:36:50 -0700 |
| commit | bf2529463e5c9a820175859bf81c40ea399d1d9d (patch) | |
| tree | f52c971609d1af69bc93aa4a69eafcd726ad339f | |
| parent | 2d67ddad2e0d8c87af1ae637919986655341dd87 (diff) | |
| download | homebrew-bf2529463e5c9a820175859bf81c40ea399d1d9d.tar.bz2 | |
Add formula for httperf
| -rw-r--r-- | Library/Formula/httperf.rb | 12 |
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 |
