17 lines
367 B
Ruby
17 lines
367 B
Ruby
require 'formula'
|
|
|
|
class Wbox < Formula
|
|
desc "HTTP testing tool and configuration-less HTTP server"
|
|
homepage 'http://hping.org/wbox/'
|
|
url 'http://www.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
|