homebrew-core/Formula/wbox.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

16 lines
301 B
Ruby

require 'formula'
class Wbox < Formula
homepage 'http://hping.org/wbox/'
url 'http://hping.org/wbox/wbox-5.tar.gz'
sha1 '5f20fca378c8abf53bb6a9069ecdebeb40a74147'
def install
system "make"
bin.install "wbox"
end
test do
system "#{bin}/wbox", "www.google.com", "1"
end
end