homebrew-core/Formula/ipsumdump.rb
2015-06-05 14:47:57 +01:00

23 lines
792 B
Ruby

class Ipsumdump < Formula
desc "Summarizes TCP/IP dump files into a self-describing ASCII format easily readable"
homepage "http://www.read.seas.harvard.edu/~kohler/ipsumdump/"
url "http://www.read.seas.harvard.edu/~kohler/ipsumdump/ipsumdump-1.85.tar.gz"
sha1 "53b7be092d94c1b28817e1c6920bb70293eb60b3"
head "https://github.com/kohler/ipsumdump.git"
bottle do
sha1 "5ae94f24b2a5bd37e86babecd1848ed18a8d2dcc" => :yosemite
sha1 "139139a0c3fcc8f0e6fdedeb396e3e65b85b758e" => :mavericks
sha1 "4acd0be3df8c6c81de7b9e28e20d93f84076f4fd" => :mountain_lion
end
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
system "#{bin}/ipsumdump", "-c", "-r", "#{test_fixtures("test.pcap")}"
end
end