rats 2.3
Closes Homebrew/homebrew#24240. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
3124ee4008
commit
0e914c28d9
1 changed files with 18 additions and 0 deletions
18
Formula/rats.rb
Normal file
18
Formula/rats.rb
Normal 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
|
Loading…
Reference in a new issue