aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fio.rb
blob: 08c74b777efe86eadcb19eb423e4ca6b7f1f0340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Fio < Formula
  homepage 'http://freecode.com/projects/fio'
  url 'http://brick.kernel.dk/snaps/fio-2.0.7.tar.bz2'
  sha1 '597cca3a5843daeb3584ce52d090c58ca6632ef7'

  def install
    system "make", "prefix=#{prefix}",
                   "mandir=#{man}",
                   "CC=#{ENV.cc}",
                   "CFLAGS=#{ENV.cflags}",
                   "install"
  end
end