blob: 4ee5c08596b949c5b9b6e3ecd8894ec51ba82b7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Fio <Formula
url 'http://brick.kernel.dk/snaps/fio-1.37.tar.bz2'
homepage 'http://freshmeat.net/projects/fio/'
md5 'a6b64ffef21c0c9e3dc3c36e87f988a5'
def install
make_cmd = "make -f Makefile.mac prefix=#{prefix}"
system "#{make_cmd} && #{make_cmd} install"
end
end
|