OpenSSL is now keg-only
OS X provides OpenSSL already. Thus policy dictates this formula be keg-only. In fact policy dictates we shouldn't even provide this beta version in master tree. So I'm not sure if it should even stay. Supposedly erlang needs it. I think this is false.
This commit is contained in:
parent
266172afdd
commit
a059f5bcb6
1 changed files with 6 additions and 4 deletions
|
@ -1,9 +1,11 @@
|
|||
require 'brewkit'
|
||||
|
||||
class Openssl <Formula
|
||||
@url='http://www.openssl.org/source/openssl-1.0.0-beta3.tar.gz'
|
||||
@homepage='http://www.openssl.org'
|
||||
@md5='cf5a32016bb9da0b9578099727bf15c9'
|
||||
url 'http://www.openssl.org/source/openssl-1.0.0-beta3.tar.gz'
|
||||
homepage 'http://www.openssl.org'
|
||||
md5 'cf5a32016bb9da0b9578099727bf15c9'
|
||||
|
||||
def keg_only?; true end
|
||||
|
||||
def install
|
||||
ENV.deparallelize
|
||||
|
@ -11,7 +13,7 @@ class Openssl <Formula
|
|||
system "make"
|
||||
system "make install"
|
||||
end
|
||||
|
||||
|
||||
def caveats
|
||||
"Please note, OS X provides openssl, this is a slightly newer beta version"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue