homebrew-core/Formula/tcpurify.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

16 lines
375 B
Ruby

require 'formula'
class Tcpurify < Formula
homepage 'http://irg.cs.ohiou.edu/~eblanton/tcpurify/'
url 'http://irg.cs.ohiou.edu/~eblanton/tcpurify/tcpurify-0.11.2.tar.gz'
sha1 'd095de38e264afd40de6f2d7c35609a3fab4c92a'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
test do
system "#{bin}/tcpurify", "-v"
end
end