aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ioping.rb
blob: 8a7d2df3a9832f17360c6a0be107606eeaaaa5f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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