homebrew-core/Formula/mplayer.rb

15 lines
351 B
Ruby
Raw Normal View History

require 'formula'
2009-08-12 00:29:24 +00:00
class Mplayer <Formula
@homepage='http://www.mplayerhq.hu/'
@head='svn://svn.mplayerhq.hu/mplayer/trunk'
depends_on 'pkg-config' => :recommended
2009-08-12 00:29:24 +00:00
def install
ENV.gcc_4_2 # llvm chokes on labels within mlp inline asm
system "./configure --prefix='#{prefix}'"
system "make"
2009-08-12 00:29:24 +00:00
system "make install"
end
end