2010-02-26 16:11:12 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Fio < Formula
|
2012-06-30 07:54:31 +00:00
|
|
|
homepage 'http://freecode.com/projects/fio'
|
|
|
|
url 'http://brick.kernel.dk/snaps/fio-2.0.7.tar.bz2'
|
|
|
|
sha1 '597cca3a5843daeb3584ce52d090c58ca6632ef7'
|
2010-02-26 16:11:12 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-10 05:26:32 +00:00
|
|
|
system "make", "prefix=#{prefix}",
|
|
|
|
"mandir=#{man}",
|
|
|
|
"CC=#{ENV.cc}",
|
|
|
|
"CFLAGS=#{ENV.cflags}",
|
|
|
|
"install"
|
2010-02-26 16:11:12 +00:00
|
|
|
end
|
|
|
|
end
|