aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ioping.rb
blob: 34c8391028945ba8c380a67cbc4ce366e4cb7ece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Ioping < Formula
  homepage 'http://code.google.com/p/ioping/'
  url 'https://ioping.googlecode.com/files/ioping-0.8.tar.gz'
  sha1 '7d4fe1414cdd5887c332426a8844e17eca5e5646'

  head 'http://ioping.googlecode.com/svn/trunk/'

  def install
    system "make"
    system "make", "install", "PREFIX=#{prefix}"
  end

  test do
    system "#{bin}/ioping", "-v"
  end
end