aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCharlie Sharpsteen2012-12-29 09:34:13 -0800
committerCharlie Sharpsteen2012-12-29 09:34:45 -0800
commita9df7bc773a9b5135c447b9cb0cda1c1181f1462 (patch)
tree34b123ee3abefa36b16205a11d21b13c22735779 /Library/Formula
parentcdcb1e8bf92c746be6a5404ea4a5fb006d62f16d (diff)
downloadhomebrew-a9df7bc773a9b5135c447b9cb0cda1c1181f1462.tar.bz2
vice: Disable FFMPEG bindings
VICE fails to compile if FFMPEG is present as VICE is not compatible with the latest FFMPEG releases: http://sourceforge.net/tracker/?func=detail&aid=3585471&group_id=223021&atid=1057617
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/vice.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/vice.rb b/Library/Formula/vice.rb
index d5069c7fe..b02440172 100644
--- a/Library/Formula/vice.rb
+++ b/Library/Formula/vice.rb
@@ -23,7 +23,10 @@ class Vice < Formula
"--prefix=#{prefix}",
"--with-cocoa",
"--without-x",
- "--enable-static-lame"
+ "--enable-static-lame",
+ # VICE can't compile against FFMPEG newer than 0.11:
+ # http://sourceforge.net/tracker/?func=detail&aid=3585471&group_id=223021&atid=1057617
+ "--disable-ffmpeg"
system "make"
system "make bindist"
prefix.install Dir['vice-macosx-*/*']