aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fio.rb
diff options
context:
space:
mode:
authorCaius Durling2010-02-26 16:11:12 +0000
committerDavid Höppner2010-03-02 19:15:34 +0100
commitc4f07f169820ae6d5e4ccdee4577eca9658f17bd (patch)
tree0a99e96d7bea5615b1369886e06c111c2b030c0a /Library/Formula/fio.rb
parent3ee2969ede6c036515e4373cd0a557fae738f7ef (diff)
downloadhomebrew-c4f07f169820ae6d5e4ccdee4577eca9658f17bd.tar.bz2
New Formula: fio
Signed-off-by: David Höppner <0xffea@gmail.com>
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