homebrew-core/Formula/mplayer.rb

15 lines
435 B
Ruby
Raw Normal View History

2009-08-12 00:29:24 +00:00
require 'brewkit'
class Mplayer <Formula
@homepage='http://www.mplayerhq.hu/'
@head='svn://svn.mplayerhq.hu/mplayer/trunk'
2009-08-12 00:29:24 +00:00
def install
# Information from http://blog.bloople.net/read/mplayer-on-snow-leopard
# seems to claim that we have to build against an x86_64 target even if on
# i386 /-:
system "./configure --prefix='#{prefix}' --target=x86_64-Darwin"
system "make"
2009-08-12 00:29:24 +00:00
system "make install"
end
end