aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/masscan.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/masscan.rb b/Library/Formula/masscan.rb
new file mode 100644
index 000000000..0b7e36db8
--- /dev/null
+++ b/Library/Formula/masscan.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Masscan < Formula
+ homepage 'https://github.com/robertdavidgraham/masscan/'
+ url 'https://github.com/robertdavidgraham/masscan/archive/1.0.tar.gz'
+ sha1 'c5a7604f52ba0d2578232c6c7a833d3a8756149f'
+ head 'https://github.com/kaizoku/masscan.git'
+
+ def install
+ system "make"
+ bin.install "bin/masscan"
+ end
+end