blob: e5fd1adee9a9fcce4470f73b60cc4da12b0ae274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Fio <Formula
url 'http://download.github.com/caius-fio-4ceb30d.tar.gz'
homepage 'http://freshmeat.net/projects/fio/'
md5 '1a85a1b492fecd44d0185bd24f01a973'
version "1.37"
def install
make_cmd = "make -f Makefile.mac prefix=#{prefix}"
system "#{make_cmd} && #{make_cmd} install"
end
end
|