homebrew-core/Formula/httperf.rb

13 lines
345 B
Ruby
Raw Normal View History

require 'formula'
2009-10-12 18:35:25 +00:00
class Httperf <Formula
url 'http://httperf.googlecode.com/files/httperf-0.9.0.tar.gz'
homepage 'http://code.google.com/p/httperf/'
2009-10-12 18:35:25 +00:00
md5 '2968c36b9ecf3d98fc1f2c1c9c0d9341'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end