diff options
| author | asaph | 2013-11-12 20:36:56 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-11-13 07:21:26 -0800 | 
| commit | 1c91a429de3c1b8297c53562952655266a7652a7 (patch) | |
| tree | 0042dacdf56b9b50a2b1a99379a764b70e045715 | |
| parent | 807926950a860d8e9f94253d5eef6648841c3ad2 (diff) | |
| download | homebrew-1c91a429de3c1b8297c53562952655266a7652a7.tar.bz2 | |
wireshark --devel 1.11.0
Closes #24243.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/wireshark.rb | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Formula/wireshark.rb b/Library/Formula/wireshark.rb index f6a3f6a03..85a065bfd 100644 --- a/Library/Formula/wireshark.rb +++ b/Library/Formula/wireshark.rb @@ -14,6 +14,11 @@ class Wireshark < Formula      depends_on :libtool    end +  devel do +    url 'http://wiresharkdownloads.riverbed.com/wireshark/src/wireshark-1.11.0.tar.bz2' +    sha1 '117e7d6ac65bcfda04d97dc4958dfe156d58c323' +  end +    option 'with-x', 'Include X11 support'    option 'with-qt', 'Use QT for GUI instead of GTK+' @@ -42,7 +47,7 @@ class Wireshark < Formula        # Reported upstream: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9290        :p1 => DATA      } -  end unless build.head? +  end if build.stable?    def install      system "./autogen.sh" if build.head?  | 
