0e914c28d9
Closes Homebrew/homebrew#24240. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
18 lines
499 B
Ruby
18 lines
499 B
Ruby
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
|