ipsumdump 1.84 (new formula)

Closes Homebrew/homebrew#36704.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Matthias Vallentin 2015-02-10 09:01:08 -08:00 committed by Mike McQuaid
parent c824482c32
commit b6e8d0b4eb

16
Formula/ipsumdump.rb Normal file
View file

@ -0,0 +1,16 @@
class Ipsumdump < Formula
homepage "http://www.read.seas.harvard.edu/~kohler/ipsumdump/"
url "http://www.read.seas.harvard.edu/~kohler/ipsumdump/ipsumdump-1.84.tar.gz"
sha1 "3dc3ff9d97a65be25866d624a663be91e27d8628"
head "https://github.com/kohler/ipsumdump.git"
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