homebrew-core/Formula/rats.rb
Theo Wadsley e3bd886263 Add a formula for RATS.
RATS - Rough Auditing Tool for Security
http://www.fortify.com/security-resources/rats.jsp

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Tweaked mandir
2010-05-01 09:48:13 -07:00

13 lines
411 B
Ruby

require 'formula'
class Rats < Formula
url 'http://www.fortify.com/servlet/download/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