aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wbox.rb
blob: af9cfd8287451df14dfaec080c1fc7602f788f0c (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