diff options
| author | Adam Vandenberg | 2010-02-15 23:19:53 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-21 14:25:48 -0700 |
| commit | e20ef12a283f6005bfbd36d7aa2259f25fc8941d (patch) | |
| tree | 27f179aa07347a3659dfb46fd3ef025703de5f3f /Library/Formula | |
| parent | 01fda7f64eb94e4fb0346fe8afa7e8feb131ce69 (diff) | |
| download | homebrew-e20ef12a283f6005bfbd36d7aa2259f25fc8941d.tar.bz2 | |
OpenSSL 0.9.8o (keg only)
* Compiling some software on 10.5 requires a newer OpenSSL
than the system provided one.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/openssl.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/openssl.rb b/Library/Formula/openssl.rb new file mode 100644 index 000000000..31b4816e6 --- /dev/null +++ b/Library/Formula/openssl.rb @@ -0,0 +1,20 @@ +require 'formula' + +class Openssl <Formula + url 'http://www.openssl.org/source/openssl-0.9.8o.tar.gz' + version '0.9.8o' + homepage 'http://www.openssl.org' + md5 '63ddc5116488985e820075e65fbe6aa4' + + keg_only :provided_by_osx + + def install + ENV.j1 # Breaks on Mac Pro + system "./config", "--prefix=#{prefix}", + "--openssldir=#{etc}", + "zlib-dynamic", "shared" + system "make" + system "make test" + system "make install" + end +end |
