diff options
| author | Max Howell | 2009-09-30 01:50:19 +0100 |
|---|---|---|
| committer | Max Howell | 2009-09-30 01:50:19 +0100 |
| commit | 210aa56d4a8508d11e9428dd08a1964a9a4ec3b8 (patch) | |
| tree | 4853d8b7b805686a670438bd8a32785478e3a9b4 /Library/Formula | |
| parent | 95a133a636ec33bafbc37e797a71fa7a52bc537b (diff) | |
| download | homebrew-210aa56d4a8508d11e9428dd08a1964a9a4ec3b8.tar.bz2 | |
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.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/openssl.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/openssl.rb b/Library/Formula/openssl.rb index d94c10dfc..56b9b7154 100644 --- a/Library/Formula/openssl.rb +++ b/Library/Formula/openssl.rb @@ -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 |
