2010-04-20 20:28:35 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Autobench < Formula
|
|
|
|
homepage 'http://www.xenoclast.org/autobench/'
|
2012-02-10 04:28:14 +00:00
|
|
|
url 'http://www.xenoclast.org/autobench/downloads/autobench-2.1.2.tar.gz'
|
2010-04-20 20:28:35 +00:00
|
|
|
md5 'dbd00818840ed8d3c3d35734f0353cff'
|
|
|
|
|
|
|
|
depends_on 'httperf'
|
|
|
|
|
|
|
|
def install
|
2012-02-10 04:28:14 +00:00
|
|
|
system "make", "PREFIX=#{prefix}",
|
|
|
|
"MANDIR=#{man1}",
|
|
|
|
"CC=#{ENV.cc}",
|
|
|
|
"CFLAGS=#{ENV.cflags}",
|
|
|
|
"install"
|
2010-04-20 20:28:35 +00:00
|
|
|
end
|
|
|
|
end
|