aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wbox.rb
blob: 006ae479451e0d8229bb2d56ee55b931936c56c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Wbox < Formula
  homepage 'http://hping.org/wbox/'
  url 'http://hping.org/wbox/wbox-5.tar.gz'
  md5 'a95ca2c69982db10704b5ed482c9c722'

  def install
    system "make"
    bin.install "wbox"
  end

  def test
    system "#{bin}/wbox", "www.google.com", "1"
  end
end