diff options
| author | Josh | 2013-11-13 03:26:15 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2013-11-13 11:36:45 +0000 |
| commit | fac47173107e3ad240316481efc58e2de99e2544 (patch) | |
| tree | 44768949b8d4f474f65b933df537d9378792d33c /Library/Formula | |
| parent | b89499f10daa4ecc1bc2d183fa08286a08438250 (diff) | |
| download | homebrew-fac47173107e3ad240316481efc58e2de99e2544.tar.bz2 | |
masscan 1.0 (new formula)
Closes #24250.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/masscan.rb | 13 |
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 |
