blob: 256d14d2e3bce526bbeeded48dcbad709cd03db0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Rats < Formula
url 'https://www.fortify.com/downloads2/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
|