2012-01-17 11:28:57 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/tcpurify", "-v"
|
2012-01-17 11:28:57 +00:00
|
|
|
end
|
|
|
|
end
|