2011-10-20 21:55:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Wbox < Formula
|
|
|
|
homepage 'http://hping.org/wbox/'
|
2012-02-10 04:31:42 +00:00
|
|
|
url 'http://hping.org/wbox/wbox-5.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '5f20fca378c8abf53bb6a9069ecdebeb40a74147'
|
2011-10-20 21:55:57 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
bin.install "wbox"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/wbox", "www.google.com", "1"
|
2011-10-20 21:55:57 +00:00
|
|
|
end
|
|
|
|
end
|