From 760b221f3aa9eacac5f6a3fdbff733004cf0c89a Mon Sep 17 00:00:00 2001 From: "David E. Smith" Date: Sat, 5 Dec 2015 22:11:22 -0600 Subject: [PATCH] sslscan 1.11.0 (new formula) Closes Homebrew/homebrew#46679. Signed-off-by: Mike McQuaid --- Formula/sslscan.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Formula/sslscan.rb diff --git a/Formula/sslscan.rb b/Formula/sslscan.rb new file mode 100644 index 0000000000000..315deab00d729 --- /dev/null +++ b/Formula/sslscan.rb @@ -0,0 +1,19 @@ +class Sslscan < Formula + desc "Test SSL/TLS enabled services to discover supported cipher suites." + homepage "https://github.com/rbsec/sslscan" + url "https://github.com/rbsec/sslscan/archive/1.11.0-rbsec.tar.gz" + version "1.11.0" + sha256 "698dbf01b9af29aaddf6bce466f568762d852f7b71936861191a3b18d9dda6a5" + head "https://github.com/rbsec/sslscan.git" + + depends_on "openssl" + + def install + system "make" + bin.install "sslscan" + end + + test do + system "#{bin}/sslscan", "google.com" + end +end