blob: ad3ba3bd65223f4677ab88f27a94eab028146c36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
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
  |