diff options
| author | Janusz Harkot | 2013-06-04 20:10:10 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-19 23:57:56 -0700 |
| commit | e1c78451b6d360da92dc8ced0f095d61f7ca02fd (patch) | |
| tree | 303ece553bcf3360ee72fe24619a2ffb830cc599 | |
| parent | bc87398da9edef09a4783fcada7eaf99a7146c83 (diff) | |
| download | homebrew-e1c78451b6d360da92dc8ced0f095d61f7ca02fd.tar.bz2 | |
git: add option to select brewed ssl and curl
Closes #20260.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/git.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb index 94c52018d..665428a59 100644 --- a/Library/Formula/git.rb +++ b/Library/Formula/git.rb @@ -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' |
