diff options
| author | Charlie Sharpsteen | 2012-12-29 09:34:13 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-12-29 09:34:45 -0800 |
| commit | a9df7bc773a9b5135c447b9cb0cda1c1181f1462 (patch) | |
| tree | 34b123ee3abefa36b16205a11d21b13c22735779 /Library/Formula | |
| parent | cdcb1e8bf92c746be6a5404ea4a5fb006d62f16d (diff) | |
| download | homebrew-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.rb | 5 |
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-*/*'] |
