4f6a646bfd
Closes Homebrew/homebrew#48563. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
64 lines
2.1 KiB
Ruby
64 lines
2.1 KiB
Ruby
class Sslyze < Formula
|
|
desc "SSL scanner"
|
|
homepage "https://github.com/nabla-c0d3/sslyze"
|
|
url "https://github.com/nabla-c0d3/sslyze/archive/release-0.12.tar.gz"
|
|
version "0.12.0"
|
|
sha256 "5b3220d42cb66067b18d9055a2234252d849090e9fba660af52a3da18fa8a899"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "afb0e576d8c7a2243ea746af6259149b32972f739e372d83ef1a025a8b6f2418" => :el_capitan
|
|
sha256 "01b9a548c4114b9ea6387ee6bc279e1eadff9326ecf32bcfde66130d4bc3cbe9" => :yosemite
|
|
sha256 "0fab1f496b3f52e7637e0ed8ef23d8b435b925150ca15b85899c95cf61084e8b" => :mavericks
|
|
end
|
|
|
|
depends_on :arch => :x86_64
|
|
depends_on :python if MacOS.version <= :snow_leopard
|
|
|
|
resource "nassl" do
|
|
url "https://github.com/nabla-c0d3/nassl/archive/v0.12.tar.gz"
|
|
sha256 "40b3766fe98144e912ea7a8f1c34bf974e76f99ac40f128c3ce50b46b1fe315e"
|
|
end
|
|
|
|
resource "openssl" do
|
|
url "https://www.openssl.org/source/old/1.0.2/openssl-1.0.2d.tar.gz"
|
|
sha256 "671c36487785628a703374c652ad2cebea45fa920ae5681515df25d9f2c9a8c8"
|
|
end
|
|
|
|
resource "zlib" do
|
|
url "http://zlib.net/zlib-1.2.8.tar.gz"
|
|
sha256 "36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d"
|
|
end
|
|
|
|
def install
|
|
# openssl fails on parallel build. Related issues:
|
|
# - https://rt.openssl.org/Ticket/Display.html?id=3736&user=guest&pass=guest
|
|
# - https://rt.openssl.org/Ticket/Display.html?id=3737&user=guest&pass=guest
|
|
ENV.deparallelize
|
|
|
|
resource("openssl").stage do
|
|
(buildpath/"nassl/openssl-1.0.2d").install Dir["*"]
|
|
end
|
|
|
|
resource("zlib").stage do
|
|
(buildpath/"nassl/zlib-1.2.8").install Dir["*"]
|
|
end
|
|
|
|
resource("nassl").stage do
|
|
(buildpath/"nassl").install Dir["*"]
|
|
end
|
|
|
|
cd "nassl" do
|
|
system "python", "buildAll_unix.py"
|
|
libexec.install "test/nassl"
|
|
end
|
|
|
|
libexec.install %w[plugins utils sslyze.py xml_out.xsd]
|
|
bin.install_symlink libexec/"sslyze.py" => "sslyze"
|
|
end
|
|
|
|
test do
|
|
assert_equal "0.12.0", shell_output("#{bin}/sslyze --version").strip
|
|
assert_match "SCAN COMPLETED", shell_output("#{bin}/sslyze --regular google.com")
|
|
end
|
|
end
|