aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ioping.rb
diff options
context:
space:
mode:
authorJosa Gesell2011-12-17 15:12:00 +0100
committerAdam Vandenberg2011-12-17 10:09:38 -0800
commit3b03b14c21c12e06e66baecc80f28797313fb194 (patch)
tree6d5799f2a83585838bf23bbfa62b03ee4dffc90f /Library/Formula/ioping.rb
parentfc1cb74786652dd04bd9f71976f80adf1efb7435 (diff)
downloadhomebrew-3b03b14c21c12e06e66baecc80f28797313fb194.tar.bz2
ioping 0.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ioping.rb')
-rw-r--r--Library/Formula/ioping.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ioping.rb b/Library/Formula/ioping.rb
new file mode 100644
index 000000000..8a7d2df3a
--- /dev/null
+++ b/Library/Formula/ioping.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Ioping < Formula
+ url 'http://ioping.googlecode.com/files/ioping-0.6.tar.gz'
+ head 'http://ioping.googlecode.com/svn/trunk/'
+ homepage 'http://code.google.com/p/ioping/'
+ md5 'f96b382a6517c7eac744291b04b928b1'
+
+ def install
+ system "make"
+ system "make install PREFIX=#{prefix}"
+ end
+end