diff options
| author | Sean Wolfe | 2009-09-04 00:09:25 +0800 |
|---|---|---|
| committer | Max Howell | 2009-09-11 17:42:54 +0100 |
| commit | 03a95bdda7b9e4f60fd61d8f965b52d6bb4d9029 (patch) | |
| tree | b7d8a31d094f5b728ff6e61b8cbfecff2be343ae | |
| parent | 590f072067257f9a316da74a067160ae44a5d5cf (diff) | |
| download | homebrew-03a95bdda7b9e4f60fd61d8f965b52d6bb4d9029.tar.bz2 | |
Openssl 1.0.0-beta3 formula
Signed-off-by: Max Howell <max@methylblue.com>
| -rw-r--r-- | Library/Formula/openssl.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/openssl.rb b/Library/Formula/openssl.rb new file mode 100644 index 000000000..d94c10dfc --- /dev/null +++ b/Library/Formula/openssl.rb @@ -0,0 +1,18 @@ +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' + + def install + ENV.deparallelize + system "./Configure", "darwin64-x86_64-cc", "shared", "zlib-dynamic", "--prefix=#{prefix}" + system "make" + system "make install" + end + + def caveats + "Please note, OS X provides openssl, this is a slightly newer beta version" + end +end |
