homebrew-core/Formula/mplayer.rb

36 lines
873 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
# http://github.com/mxcl/homebrew/issues/#issue/87
depends_on :subversion if MACOS_VERSION < 10.6
2009-08-12 00:29:24 +00:00
def install
# LLVM-2206 can't handle some of the assembly
# Using gcc_4_2 doesn't work, failing mysteriously (check this again)
ENV['CC'] = ''
ENV['LD'] = ''
# any kind of optimisation breaks the build
ENV['CFLAGS'] = '-w -pipe'
args = ['./configure', "--prefix=#{prefix}"]
args << "--target=x86_64-Darwin" if Hardware.is_64_bit? and MACOS_VERSION >= 10.6
system *args
system "make"
2009-08-12 00:29:24 +00:00
system "make install"
end
end
if MACOS_VERSION < 10.6
class SubversionDownloadStrategy
def svn
Formula.factory('subversion').bin+'svn'
end
end
end