OpenSSL 1.0.1
Closes Homebrew/homebrew#11247. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
d692c10848
commit
d4998f92a3
1 changed files with 5 additions and 5 deletions
|
@ -2,11 +2,11 @@ require 'formula'
|
||||||
|
|
||||||
class Openssl < Formula
|
class Openssl < Formula
|
||||||
homepage 'http://www.openssl.org'
|
homepage 'http://www.openssl.org'
|
||||||
url 'http://www.openssl.org/source/openssl-0.9.8s.tar.gz'
|
url 'http://www.openssl.org/source/openssl-1.0.1.tar.gz'
|
||||||
sha1 'a7410b0991f37e125bf835dfd1315822fca64d56'
|
sha1 'a6476d33fd38c2e7dfb438d1e3be178cc242c907'
|
||||||
|
|
||||||
keg_only :provided_by_osx,
|
keg_only :provided_by_osx,
|
||||||
"The OpenSSL provided by Leopard (0.9.7) is too old for some software."
|
"The OpenSSL provided by OS X is too old for some software."
|
||||||
|
|
||||||
def install
|
def install
|
||||||
args = %W[./Configure
|
args = %W[./Configure
|
||||||
|
@ -22,7 +22,7 @@ class Openssl < Formula
|
||||||
|
|
||||||
ENV.deparallelize # Parallel compilation fails
|
ENV.deparallelize # Parallel compilation fails
|
||||||
system "make"
|
system "make"
|
||||||
system "make test"
|
system "make", "test"
|
||||||
system "make install MANDIR=#{man} MANSUFFIX=ssl"
|
system "make", "install", "MANDIR=#{man}", "MANSUFFIX=ssl"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue