aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authordenji2013-11-13 06:23:20 +0200
committerAdam Vandenberg2013-11-16 22:57:24 -0800
commit5861cadda425cc186b2aabe1f5e9403a9934752a (patch)
tree0d11ac2c3ffbe6aba99c99f29796533b18190df4 /Library/Formula
parenta37d284c6deaf52454c54de11cfabef32519c01f (diff)
downloadhomebrew-5861cadda425cc186b2aabe1f5e9403a9934752a.tar.bz2
FlawFinder 1.27
Closes #24241. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/flawfinder.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/flawfinder.rb b/Library/Formula/flawfinder.rb
new file mode 100644
index 000000000..bb5db4f0a
--- /dev/null
+++ b/Library/Formula/flawfinder.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Flawfinder < Formula
+ homepage 'http://www.dwheeler.com/flawfinder/'
+ url 'http://www.dwheeler.com/flawfinder/flawfinder-1.27.tar.gz'
+ sha1 '0af702c1e0cbd0385a78be6ef1f2f7752ba6193f'
+ head 'git://git.code.sf.net/p/flawfinder/code'
+
+ def install
+ system "make", "INSTALL_DIR=#{prefix}",
+ "INSTALL_DIR_BIN=#{bin}",
+ "INSTALL_DIR_MAN=#{man1}",
+ "install"
+ end
+end