aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZach Holman2012-10-31 16:06:01 -0700
committerAdam Vandenberg2012-10-31 21:39:41 -0700
commitdba485bc7ffa4ece96af305e2ec5f8d5d864ecb8 (patch)
treec3294a02f1cb9542e0b73758730ce63141e7f3cc
parent09a34332ef25036be7d7dfed3dd7bf2eae7828dd (diff)
downloadhomebrew-dba485bc7ffa4ece96af305e2ec5f8d5d864ecb8.tar.bz2
mpd: enable ffmpeg support
mpd out of the box doesn't do well with m4a files. Since Homebrew is used on OS X, and a lot of Mac users are bound to have lots of music purchased from iTunes, it makes sense to install mpd with all the dependencies necessary to play iTunes-purchased music. Closes #15788. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/mpd.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/mpd.rb b/Library/Formula/mpd.rb
index edecd51ee..e267b4d1b 100644
--- a/Library/Formula/mpd.rb
+++ b/Library/Formula/mpd.rb
@@ -13,6 +13,7 @@ class Mpd < Formula
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'libid3tag'
+ depends_on 'ffmpeg'
depends_on 'flac'
depends_on 'libshout'
depends_on 'mad'
@@ -31,6 +32,7 @@ class Mpd < Formula
args = ["--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-bzip2",
+ "--enable-ffmpeg",
"--enable-flac",
"--enable-shout",
"--enable-fluidsynth",