29 lines
715 B
Ruby
29 lines
715 B
Ruby
require 'formula'
|
|
|
|
class Wireshark < Formula
|
|
url 'http://media-2.cacetech.com/wireshark/src/wireshark-1.4.4.tar.bz2'
|
|
md5 '11ce019d85d9822597b163ce5b4da858'
|
|
homepage 'http://www.wireshark.org'
|
|
|
|
depends_on 'gnutls' => :optional
|
|
depends_on 'pcre' => :optional
|
|
depends_on 'glib'
|
|
depends_on 'gtk+' if ARGV.include? "--with-x"
|
|
|
|
def options
|
|
[["--with-x", "Include X11 support"]]
|
|
end
|
|
|
|
def install
|
|
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
|
|
|
|
# actually just disables the GTK GUI
|
|
args << "--disable-wireshark" if not ARGV.include? "--with-x"
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
ENV.j1 # Install failed otherwise.
|
|
system "make install"
|
|
end
|
|
end
|
|
|