aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula.rb
diff options
context:
space:
mode:
authorSecond Planet2011-11-05 19:40:21 -0400
committerAdam Vandenberg2012-02-25 10:19:59 -0800
commit8a4cb8c0acda73dae4234caeaeaa3a24eeb7b56c (patch)
treecd5351f2ab055ce7b908aadd437a58c32f4facd7 /Library/Homebrew/formula.rb
parent5d1db0e934b906ed6e84bcd53b4e24fb0c48424c (diff)
downloadbrew-8a4cb8c0acda73dae4234caeaeaa3a24eeb7b56c.tar.bz2
Add more external dep options
* Chicken Scheme * Node.js * Rubinius Closes Homebrew/homebrew#8466. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Homebrew/formula.rb')
-rw-r--r--Library/Homebrew/formula.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 7335afd24..ebe858897 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -740,7 +740,7 @@ EOF
def depends_on name
@deps ||= []
- @external_deps ||= {:python => [], :perl => [], :ruby => [], :jruby => []}
+ @external_deps ||= {:python => [], :perl => [], :ruby => [], :jruby => [], :chicken => [], :rbx => [], :node => []}
case name
when String, Formula
@@ -748,7 +748,7 @@ EOF
when Hash
key, value = name.shift
case value
- when :python, :perl, :ruby, :jruby
+ when :python, :perl, :ruby, :jruby, :chicken, :rbx, :node
@external_deps[value] << key
when :optional, :recommended, :build
@deps << key