homebrew-core/Formula/openssl.rb

82 lines
2.0 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Openssl < Formula
homepage 'http://openssl.org'
2013-02-11 21:34:57 +00:00
url 'http://openssl.org/source/openssl-1.0.1e.tar.gz'
mirror 'http://mirrors.ibiblio.org/openssl/source/openssl-1.0.1e.tar.gz'
2013-02-11 21:34:57 +00:00
sha256 'f74f15e8c8ff11aa3d5bb5f276d202ec18d7246e95f961db76054199c69c1ae3'
2011-03-16 05:01:31 +00:00
keg_only :provided_by_osx,
"The OpenSSL provided by OS X is too old for some software."
def install
2012-04-18 17:00:17 +00:00
args = %W[./Configure
--prefix=#{prefix}
--openssldir=#{openssldir}
2012-04-18 17:00:17 +00:00
zlib-dynamic
shared
]
if MacOS.prefer_64_bit?
args << "darwin64-x86_64-cc" << "enable-ec_nistp_64_gcc_128"
# -O3 is used under stdenv, which results in test failures when using clang
inreplace 'Configure',
%{"darwin64-x86_64-cc","cc:-arch x86_64 -O3},
%{"darwin64-x86_64-cc","cc:-arch x86_64 -Os}
setup_makedepend_shim
else
args << "darwin-i386-cc"
end
system "perl", *args
2013-08-20 17:11:58 +00:00
ENV.deparallelize
system "make", "depend" if MacOS.prefer_64_bit?
system "make"
system "make", "test"
system "make", "install", "MANDIR=#{man}", "MANSUFFIX=ssl"
end
def setup_makedepend_shim
path = buildpath/"brew/makedepend"
path.write <<-EOS.undent
#!/bin/sh
exec "#{ENV.cc}" -M "$@"
EOS
path.chmod 0755
ENV.prepend_path 'PATH', path.parent
end
def openssldir
etc/"openssl"
end
def cert_pem
openssldir/"cert.pem"
end
def osx_cert_pem
openssldir/"osx_cert.pem"
end
def write_pem_file
system "security find-certificate -a -p /Library/Keychains/System.keychain > '#{osx_cert_pem}.tmp'"
system "security find-certificate -a -p /System/Library/Keychains/SystemRootCertificates.keychain >> '#{osx_cert_pem}.tmp'"
system "mv", "-f", "#{osx_cert_pem}.tmp", osx_cert_pem
end
def post_install
openssldir.mkpath
if cert_pem.exist?
write_pem_file
else
cert_pem.unlink if cert_pem.symlink?
write_pem_file
openssldir.install_symlink 'osx_cert.pem' => 'cert.pem'
end
end
end