blob: 1cdf82f63a766fb874101f6888f27fa510b0575d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | require 'formula'
class Autobench < Formula
  homepage 'http://www.xenoclast.org/autobench/'
  url 'http://www.xenoclast.org/autobench/downloads/autobench-2.1.2.tar.gz'
  md5 'dbd00818840ed8d3c3d35734f0353cff'
  depends_on 'httperf'
  def install
    system "make", "PREFIX=#{prefix}",
                   "MANDIR=#{man1}",
                   "CC=#{ENV.cc}",
                   "CFLAGS=#{ENV.cflags}",
                   "install"
  end
end
 |