blob: 5f6afcc0beba9fe3ce259bbec91e18e54dee847d (
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'
  sha1 '8c342b50ce36c13d46dc995bc5f08acdead21553'
  depends_on 'httperf'
  def install
    system "make", "PREFIX=#{prefix}",
                   "MANDIR=#{man1}",
                   "CC=#{ENV.cc}",
                   "CFLAGS=#{ENV.cflags}",
                   "install"
  end
end
  |