blob: 2d689959dedac119eb2910c9b64704194255de9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Httperf <Formula
url 'http://httperf.googlecode.com/files/httperf-0.9.0.tar.gz'
homepage 'http://code.google.com/p/httperf/'
md5 '2968c36b9ecf3d98fc1f2c1c9c0d9341'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|