1005997ff4
Yconalyzer is a low-overhead pcap utility developed by Yahoo that provides a bird's eye view of traffic on a particular TCP port, displaying a distribution of duration, volume and throughput over all connections while being able to narrow down to a connection as well. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
476 B
Ruby
15 lines
476 B
Ruby
require 'formula'
|
|
|
|
class Yconalyzer <Formula
|
|
url 'http://downloads.sourceforge.net/project/yconalyzer/yconalyzer-1.0.4.tar.bz2'
|
|
homepage 'http://sourceforge.net/projects/yconalyzer/'
|
|
md5 '9b65a86d9c6aaf7717b9e2c7c1c4891e'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make"
|
|
system "chmod +x ./install-sh"
|
|
system "make install"
|
|
end
|
|
end
|