aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorTheo Wadsley2010-05-01 15:51:02 +1000
committerAdam Vandenberg2010-05-01 09:48:13 -0700
commit42c0d0e2c68418bfc03ab252ae4c5ff133ea0336 (patch)
tree4f1c881d0a58c365e5d113d622c601949a28a4ee /Library/Formula
parent301f110afeabe931cb9bc45d046d505624dd0256 (diff)
downloadhomebrew-42c0d0e2c68418bfc03ab252ae4c5ff133ea0336.tar.bz2
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
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rats.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/rats.rb b/Library/Formula/rats.rb
new file mode 100644
index 000000000..2e66494ea
--- /dev/null
+++ b/Library/Formula/rats.rb
@@ -0,0 +1,13 @@
+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