homebrew-core/Formula/autobench.rb
Kevin Faustino a4d261441a New Formula: autobench
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Fix install paths.
2010-05-09 17:23:27 -07:00

18 lines
426 B
Ruby

require 'formula'
class Autobench < Formula
url 'http://www.xenoclast.org/autobench/downloads/autobench-2.1.2.tar.gz'
homepage 'http://www.xenoclast.org/autobench/'
md5 'dbd00818840ed8d3c3d35734f0353cff'
depends_on 'httperf'
def install
inreplace "Makefile" do |s|
s.change_make_var! 'PREFIX', prefix
s.change_make_var! 'MANDIR', man1
end
system "make"
system "make install"
end
end