aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fio.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/fio.rb')
-rw-r--r--Library/Formula/fio.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/fio.rb b/Library/Formula/fio.rb
new file mode 100644
index 000000000..e5fd1adee
--- /dev/null
+++ b/Library/Formula/fio.rb
@@ -0,0 +1,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