2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-12 00:29:24 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mplayer < Formula
|
2009-12-07 15:31:51 +00:00
|
|
|
homepage 'http://www.mplayerhq.hu/'
|
2010-11-10 18:16:28 +00:00
|
|
|
# https://github.com/mxcl/homebrew/issues/issue/87
|
2010-06-28 21:55:31 +00:00
|
|
|
head 'svn://svn.mplayerhq.hu/mplayer/trunk', :using => StrictSubversionDownloadStrategy
|
2009-12-07 15:31:51 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-02-19 23:39:52 +00:00
|
|
|
depends_on 'yasm' => :optional
|
2009-08-12 00:29:24 +00:00
|
|
|
|
2011-03-08 07:04:30 +00:00
|
|
|
def patches
|
|
|
|
# configure prompts the user to pull ffmpeg from git.
|
|
|
|
# Don't do that.
|
|
|
|
DATA
|
|
|
|
end
|
|
|
|
|
2009-08-12 00:29:24 +00:00
|
|
|
def install
|
2010-02-19 23:39:52 +00:00
|
|
|
# Do not use pipes, per bug report
|
2010-11-10 18:16:28 +00:00
|
|
|
# https://github.com/mxcl/homebrew/issues#issue/622
|
2010-02-19 23:39:52 +00:00
|
|
|
# and MacPorts
|
|
|
|
# http://trac.macports.org/browser/trunk/dports/multimedia/mplayer-devel/Portfile
|
|
|
|
# any kind of optimisation breaks the build
|
|
|
|
ENV.gcc_4_2
|
|
|
|
ENV['CFLAGS'] = ''
|
|
|
|
ENV['CXXFLAGS'] = ''
|
2009-12-07 15:31:51 +00:00
|
|
|
|
2011-03-08 08:24:08 +00:00
|
|
|
args = "--prefix=#{prefix}"
|
2009-12-07 15:31:51 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
system './configure', *args
|
2009-09-18 08:13:46 +00:00
|
|
|
system "make"
|
2009-08-12 00:29:24 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2009-12-04 17:44:18 +00:00
|
|
|
end
|
2011-03-08 07:04:30 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/configure b/configure
|
|
|
|
index ef60340..0b24e73 100755
|
|
|
|
--- a/configure
|
|
|
|
+++ b/configure
|
|
|
|
@@ -48,8 +48,6 @@ if test -e ffmpeg/mp_auto_pull ; then
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! test -e ffmpeg ; then
|
|
|
|
- echo "No FFmpeg checkout, press enter to download one with git or CTRL+C to abort"
|
|
|
|
- read tmp
|
|
|
|
if ! git clone --depth 1 git://git.videolan.org/ffmpeg.git ffmpeg ; then
|
|
|
|
rm -rf ffmpeg
|
|
|
|
echo "Failed to get a FFmpeg checkout"
|