homebrew-core/Formula/rats.rb
Mark A. Miller b0adbd5db5 Updated the URL for the rats package
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-08 12:10:08 -07:00

13 lines
406 B
Ruby

require 'formula'
class Rats < Formula
url 'https://www.fortify.com/downloads2/public/rats-2.3.tar.gz'
homepage 'http://www.fortify.com/security-resources/rats.jsp'
md5 '339ebe60fc61789808a457f6f967d226'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end