homebrew-core/Formula/mplayer.rb
Max Howell 93fd38bbed Depend on subversion for Leopard; Fixes Homebrew/homebrew#87
The Subversion bundled with Leopard doesn't export externals, so the build fails.
2009-12-02 12:26:51 +00:00

18 lines
No EOL
454 B
Ruby

require 'formula'
class Mplayer <Formula
@homepage='http://www.mplayerhq.hu/'
@head='svn://svn.mplayerhq.hu/mplayer/trunk'
depends_on 'pkg-config' => :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