blob: fedb26c8268d310cbfc6f86328bf6e295b18f04a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Mplayer <Formula
@homepage='http://www.mplayerhq.hu/'
@head='svn://svn.mplayerhq.hu/mplayer/trunk'
depends_on 'pkg-config' => :recommended
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
|