aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-04-27 08:32:57 -0700
committerAdam Vandenberg2010-04-27 08:32:57 -0700
commitd7c09f7d6d65046c71c0944a9e8860a08f3a906e (patch)
tree47766fe43ecc46b3b1ce0939a9ba551de9f5c549 /Library
parent705d16b114452a395c41972cb5f5b292847916c3 (diff)
downloadhomebrew-d7c09f7d6d65046c71c0944a9e8860a08f3a906e.tar.bz2
Update wireshark to 1.2.7.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/wireshark.rb13
1 files changed, 8 insertions, 5 deletions
diff --git a/Library/Formula/wireshark.rb b/Library/Formula/wireshark.rb
index 5526edc3a..e01cb111b 100644
--- a/Library/Formula/wireshark.rb
+++ b/Library/Formula/wireshark.rb
@@ -1,17 +1,20 @@
require 'formula'
class Wireshark <Formula
- @url='http://media-2.cacetech.com/wireshark/src/wireshark-1.0.10.tar.bz2'
- @md5='facf1eef2f126a9d45e5c30702dae12b'
- @homepage='http://www.wireshark.org'
+ url 'http://media-2.cacetech.com/wireshark/src/wireshark-1.2.7.tar.bz2'
+ md5 'cff6b18aa47a7e3eb973efe62c676b50'
+ homepage 'http://www.wireshark.org'
+ depends_on 'gnutls' => :optional
+ depends_on 'pcre' => :optional
depends_on 'glib'
def install
- system "./configure", "--disable-debug",
- "--prefix=#{prefix}",
+ system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking",
"--disable-wireshark" # actually just disables the GTK GUI
+ system "make"
+ ENV.j1 # Install failed otherwise.
system "make install"
end