homebrew-core/Formula/rats.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

17 lines
548 B
Ruby

class Rats < Formula
desc "Rough auditing tool for security"
homepage "https://security.web.cern.ch/security/recommendations/en/codetools/rats.shtml"
url "https://rough-auditing-tool-for-security.googlecode.com/files/rats-2.4.tgz"
sha256 "2163ad111070542d941c23b98d3da231f13cf065f50f2e4ca40673996570776a"
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"--infodir=#{info}"
system "make", "install"
end
test do
system "#{bin}/rats"
end
end