diff options
| author | Jack Nagel | 2013-07-23 15:48:21 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-07-23 15:49:21 -0500 |
| commit | 1322d93a2f364fb0f0eec81d11c8517e9d9faecd (patch) | |
| tree | 7e4999512f5ef96f289fb6d5130132eab73b1063 /Library/Formula | |
| parent | 80cf91e387f5165dcdc271fc5baddf14c37b23d7 (diff) | |
| download | homebrew-1322d93a2f364fb0f0eec81d11c8517e9d9faecd.tar.bz2 | |
v8: optionally use readline instead of libedit
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/v8.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/v8.rb b/Library/Formula/v8.rb index 517b863b9..c8f782d54 100644 --- a/Library/Formula/v8.rb +++ b/Library/Formula/v8.rb @@ -12,9 +12,12 @@ class V8 < Formula head 'https://github.com/v8/v8.git' + option 'with-readline', 'Use readline instead of libedit' + # gyp currently depends on a full xcode install # https://code.google.com/p/gyp/issues/detail?id=292 depends_on :xcode + depends_on 'readline' => :optional def install system 'make dependencies' |
