aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/scummvm.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/scummvm.rb')
-rw-r--r--Library/Formula/scummvm.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/scummvm.rb b/Library/Formula/scummvm.rb
index adb1f1a48..912c4207e 100644
--- a/Library/Formula/scummvm.rb
+++ b/Library/Formula/scummvm.rb
@@ -13,9 +13,10 @@ prefer to use theirs. If so type `brew home scummvm' to visit their site.
EOS
end
- def deps
- { :required => 'sdl', :recommended => %w[flac libogg libvorbis] }
- end
+ depends_on 'sdl'
+ depends_on 'flac' => :recommended
+ depends_on 'libvorbis' => :recommended
+ depends_on 'libogg' => :recommended
def install
system "./configure --prefix='#{prefix}' --disable-debug"