masscan 1.0 (new formula)

Closes Homebrew/homebrew#24250.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Josh 2013-11-13 03:26:15 -08:00 committed by Mike McQuaid
parent b1d4fc134a
commit 0cc787ef55
1 changed files with 13 additions and 0 deletions

13
Formula/masscan.rb Normal file
View File

@ -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