New formula: wbox

Closes Homebrew/homebrew#8210.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
erase/rewind 2011-10-20 23:55:57 +02:00 committed by Jack Nagel
parent 369871ce25
commit f384558e11

16
Formula/wbox.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Wbox < Formula
url 'http://hping.org/wbox/wbox-5.tar.gz'
homepage 'http://hping.org/wbox/'
md5 'a95ca2c69982db10704b5ed482c9c722'
def install
system "make"
bin.install "wbox"
end
def test
system "wbox www.google.com 1"
end
end