aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wbox.rb
blob: 99bcdd06d4dc419303bdb6245010285b8a75ee33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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