Closes Homebrew/homebrew#24240.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
denji 2013-11-13 05:59:05 +02:00 committed by Adam Vandenberg
parent 3124ee4008
commit 0e914c28d9

18
Formula/rats.rb Normal file
View file

@ -0,0 +1,18 @@
require 'formula'
class Rats < Formula
homepage 'https://security.web.cern.ch/security/recommendations/en/codetools/rats.shtml'
url 'https://rough-auditing-tool-for-security.googlecode.com/files/rats-2.3.tar.gz'
sha1 '02283f2a5f0482f09c7e33d2aa84d68c48a8ec5a'
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"--infodir=#{info}"
system "make install"
end
test do
system "#{bin}/rats"
end
end