aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/arpoison.rb
blob: 17b9176f3b17164d91f1744309f3ced3579ae0d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Arpoison <Formula
  url 'http://www.arpoison.net/arpoison-0.6.tar.gz'
  homepage 'http://www.arpoison.net/'
  md5 '5274ae9c7c879b97b425a4b2da59aa65'

  depends_on 'libnet'

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