aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mplayer.rb
AgeCommit message (Collapse)Author
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2011-03-09mplayer: fix build flags.Drew Hess
ENV.gcc_4_2 sets LD and CC as needed, but the formula was subsequently clearing LD and CC. This breaks the build with Xcode 4. Passing --enable-largefiles, --enable-apple-remote, and --target=x86_64-Darwin to configure is unnecessary. These settings are detected by the configure script and (properly) enabled automatically. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-09mplayer: don't prompt for ffmpeg git pull in configureDrew Hess
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-18Use https for all GitHub URLsTianyi Cui
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-12Mark scons, cmake & pkg-config as build-time depsAdam Vandenberg
2010-08-22Define "snow_leopard_64?"Adam Vandenberg
snow_leopard_64? (defined in Hardware) is a short-cut for: MACOS_VERSION >= 10.6 and Hardware.is_64_bit? Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-07Update formulae for version 0.7Adam Vandenberg
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
2010-07-08Improved Subversion support.Adam Vandenberg
Homebrew will now use the svn binary pointed to by HOMEBREW_SVN if set, use a Homebrew-installed svn if present, finally falling back to the system-provided svn binary. If a formula (mplayer) requires a newer version of Subversion than what Leopard provides, it can use the "StrictSubversionDownloadStrategy" download strategy to warn the user. These changes also fix an issue with forcing exports not working on a stock Leopard subversion, but letting the user either specify a specific binary or install Subversion via Homebrew and pick that up instead.
2010-02-19Update Mplayer formula to compile on 10.5.Adam Vandenberg
2009-12-31Fix stupid programming error in mplayer formulaMax Howell
Fixes #278
2009-12-07Fix mplayer formula; Fixes #172Max Howell
This is horrible in that I had to disable all optimisations and mplayer is the kind of tool that really gets a boost out of them! I hope they release another tarball soon.
2009-12-04Fixes broken SubversionDownloadStrategyMax Howell
Being able to commit parts of diffs can bite you if you aren't careful.
2009-12-02Depend on subversion for Leopard; Fixes #87Max Howell
The Subversion bundled with Leopard doesn't export externals, so the build fails.
2009-10-15s/require 'brewkit'/require 'formula'/gMax Howell
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
2009-10-09MPlayer formula fixesDavid Conrad
Don't force x86_64; configure detects it properly now Use gcc-4.2 as llvm-gcc-4.2 chokes on mlp inline asm Add recommended dependancy on pkg-config
2009-09-18Fixing the mplayer formula, for now.elliottcable
Some day I hope to make it utilize the ffmpeg-mt and speed patches, as well as providing optimization info in the notes, but I can’t currently get that to work on Snow Leopard. Maybe later.
2009-08-24MPlayer formulaMax Howell