diff options
| author | Zach Holman | 2012-10-31 16:06:01 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-31 21:39:41 -0700 |
| commit | dba485bc7ffa4ece96af305e2ec5f8d5d864ecb8 (patch) | |
| tree | c3294a02f1cb9542e0b73758730ce63141e7f3cc /Library | |
| parent | 09a34332ef25036be7d7dfed3dd7bf2eae7828dd (diff) | |
| download | homebrew-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>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/mpd.rb | 2 |
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", |
