git: add option to select brewed ssl and curl

Closes Homebrew/homebrew#20260.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Janusz Harkot 2013-06-04 20:10:10 +02:00 committed by Adam Vandenberg
parent b1498d7bc4
commit 0647b48e0e
1 changed files with 4 additions and 0 deletions

View File

@ -15,10 +15,14 @@ class Git < Formula
option 'with-blk-sha1', 'Compile with the block-optimized SHA1 implementation'
option 'without-completions', 'Disable bash/zsh completions from "contrib" directory'
option 'with-brewed-openssl', "Build with Homebrew OpenSSL instead of the system version"
option 'with-brewed-curl', "Use Homebrew's version of cURL library"
depends_on :python
depends_on 'pcre' => :optional
depends_on 'gettext' => :optional
depends_on 'openssl' if build.with? 'brewed-openssl'
depends_on 'curl' if build.with? 'brewed-curl'
resource 'man' do
url 'http://git-core.googlecode.com/files/git-manpages-1.8.4.tar.gz'