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

class Libpcap <Formula
  url 'git://github.com/mcr/libpcap.git'
  homepage 'http://www.tcpdump.org/'
  version '1.1-PRE-CVS'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--enable-ipv6"
    system "make install"
  end
end