class Libressl < Formula desc "Version of the SSL/TLS protocol forked from OpenSSL" homepage "http://www.libressl.org/" url "http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.3.3.tar.gz" sha256 "76733166187cc8587e0ebe1e83965ef257262a1a676a36806edd3b6d51b50aa9" bottle do sha256 "8293395e7dc5bed93db97e215e56517c6c871b6a4fb76ccb36b30c7384f88bfc" => :el_capitan sha256 "adb8fdae706d589ecdb24d338fb712c396d3a4c052e9e58d1bc7f1b6b4a1ea96" => :yosemite sha256 "ac399714e57b5debf5a8d3ad7a4ac83f71efe3c9bfaf87a4f84fd13e2d544ed5" => :mavericks end head do url "https://github.com/libressl-portable/portable.git" depends_on "automake" => :build depends_on "autoconf" => :build depends_on "libtool" => :build end keg_only "LibreSSL is not linked to prevent conflict with the system OpenSSL." def install args = %W[ --disable-dependency-tracking --disable-silent-rules --prefix=#{prefix} --with-openssldir=#{etc}/libressl --sysconfdir=#{etc}/libressl ] system "./autogen.sh" if build.head? system "./configure", *args system "make" system "make", "check" system "make", "install" end def post_install 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 etc/"libressl/cert.pem" (etc/"libressl/cert.pem").atomic_write(valid_certs.join("\n")) end def caveats; <<-EOS.undent A CA file has been bootstrapped using certificates from the system keychain. To add additional certificates, place .pem files in #{etc}/libressl/certs and run #{opt_bin}/openssl certhash #{etc}/libressl/certs EOS end test do # Make sure the necessary .cnf file exists, otherwise LibreSSL gets moody. assert (HOMEBREW_PREFIX/"etc/libressl/openssl.cnf").exist?, "LibreSSL requires the .cnf file for some functionality" # Check LibreSSL itself functions as expected. (testpath/"testfile.txt").write("This is a test file") expected_checksum = "e2d0fe1585a63ec6009c8016ff8dda8b17719a637405a4e23c0ff81339148249" system "#{bin}/openssl", "dgst", "-sha256", "-out", "checksum.txt", "testfile.txt" open("checksum.txt") do |f| checksum = f.read(100).split("=").last.strip assert_equal checksum, expected_checksum end end end