homebrew-core/Formula/ioping.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

18 lines
392 B
Ruby

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