homebrew-core/Formula/ucspi-tools.rb
2015-12-13 00:01:38 +00:00

104 lines
3.4 KiB
Ruby

class UcspiTools < Formula
desc "Various tools to handle UCSPI connections"
homepage "https://github.com/younix/ucspi/blob/master/README.md"
revision 8
stable do
url "https://github.com/younix/ucspi/archive/v1.2.tar.gz"
sha256 "38cd0ae9113324602a600a6234d60ec9c3a8c13c8591e9b730f91ffb77e5412a"
# LibreSSL is still in rapid development & the release branch we follow
# moves much quicker than the ucspi project. Since ucspi-tools breaks
# every LibreSSL update vendor until new release is available.
resource "libressl" do
url "http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.2.5.tar.gz"
sha256 "e3caded0469d8dc64f4ca2fe8e499ada4dd014e84d1c5a71818d39e54e6c914b"
end
# LibreSSL renamed a function between the 2.1.3 and 2.1.4 release which ucspi uses.
# https://github.com/younix/ucspi/issues/2
# http://www.freshbsd.org/commit/openbsd/2b22762d1139c74c743195f46b41fea0b9459ecd
patch do
url "https://github.com/younix/ucspi/pull/3.diff"
sha256 "932aa6fcde21dc4eb3ad4474a6cd5f413f4da076b1de1491360a60584e0e514e"
end
end
bottle do
sha256 "d271b18626a2ac4cc998136c556a9749b798689a597d964d0964f847e850cce0" => :el_capitan
sha256 "6b653a80ec8359106c38339dc528525cf25168176272cd0cb9864c88da30c135" => :yosemite
sha256 "b358cf2d0ae16aae4321760f358e59f14ff2e31ebb3d1f931c246842cdf7e4c0" => :mavericks
end
head do
url "https://github.com/younix/ucspi.git"
depends_on "libressl"
end
depends_on "pkg-config" => :build
depends_on "ucspi-tcp"
def install
if build.stable?
vendordir = libexec/"vendor/libressl"
resource("libressl").stage do
args = %W[
--disable-dependency-tracking
--disable-silent-rules
--prefix=#{vendordir}
--with-openssldir=#{vendordir}/etc
--sysconfdir=#{vendordir}/etc
]
# https://github.com/libressl-portable/portable/issues/121
args << "--disable-asm" if MacOS.version <= :snow_leopard
system "./configure", *args
system "make"
system "make", "check"
system "make", "install"
# It looks for the headers prior to checking pkg-config so we
# can't just pass PKG_CONFIG_PATH sadly.
ENV.prepend_path "PATH", vendordir/"bin"
ENV.prepend_path "PKG_CONFIG_PATH", "#{vendordir}/lib/pkgconfig"
ENV.prepend "CFLAGS", "-I#{vendordir}/include"
end
end
system "make", "PREFIX=#{prefix}", "install", "CFLAGS=#{ENV.cflags}"
end
def post_install
return unless File.exist?(libexec/"vendor")
keychains = %w[
/Library/Keychains/System.keychain
/System/Library/Keychains/SystemRootCertificates.keychain
]
certs_list = `security find-certificate -a -p #{keychains.join(" ")}`
certs = certs_list.scan(
/-----BEGIN CERTIFICATE-----.*?-----END CERTIFICATE-----/m
)
valid_certs = certs.select do |cert|
IO.popen("openssl x509 -inform pem -checkend 0 -noout", "w") do |openssl_io|
openssl_io.write(cert)
openssl_io.close_write
end
$?.success?
end
# LibreSSL install a default pem - We prefer to use OS X for consistency.
rm_f libexec/"vendor/libressl/etc/cert.pem"
(libexec/"vendor/libressl/etc/cert.pem").atomic_write(valid_certs.join("\n"))
end
test do
out = shell_output("#{bin}/tlsc 2>&1", 1)
assert_equal "tlsc [-hCH] [-c cert_file] [-f ca_file] [-p ca_path] program [args...]\n", out
end
end