blob: 41f8302896145ab5fc4a4dde73fa4131862ff4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|