require 'formula' class Mplayer :recommended # http://github.com/mxcl/homebrew/issues/#issue/87 depends_on :subversion if MACOS_VERSION < 10.6 def install ENV.gcc_4_2 # llvm chokes on labels within mlp inline asm system "./configure", "--prefix=#{prefix}" system "make" system "make install" end end if MACOS_VERSION < 10.6 class SubversionDownloadStrategy def svn Formula.factory('subversion').bin+'svn' end end end