diff options
| author | Ruben Kerkhof | 2014-08-02 13:20:18 +0200 |
|---|---|---|
| committer | Jack Nagel | 2014-08-09 11:46:30 -0500 |
| commit | 9b3d4eff9124495ffd9b09e839c91c1e8cb4b03d (patch) | |
| tree | c03a5a5ac1fa571230bccc6220df2f59bee0887f /Library/Formula | |
| parent | 013fd778b53a7ec053fa5c2564208a2bb341e9cc (diff) | |
| download | homebrew-9b3d4eff9124495ffd9b09e839c91c1e8cb4b03d.tar.bz2 | |
mpd: optionally enable opus support
Closes #31316.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -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 0860c23a9..9b8d09d6d 100644 --- a/Library/Formula/mpd.rb +++ b/Library/Formula/mpd.rb @@ -27,6 +27,7 @@ class Mpd < Formula option "with-flac", "Build with flac support (for Flac encoding when streaming)" option "with-vorbis", "Build with vorbis support (for Ogg encoding)" option "with-yajl", "Build with yajl support (for playing from soundcloud)" + option "with-opus", "Build with opus support (for Opus encoding and decoding)" if MacOS.version < :lion option "with-libwrap", "Build with libwrap (TCP Wrappers) support" @@ -57,6 +58,7 @@ class Mpd < Formula depends_on "libmms" => :optional # MMS input depends_on "libzzip" => :optional # Reading from within ZIPs depends_on "yajl" => :optional # JSON library for SoundCloud + depends_on "opus" => :optional # Opus support depends_on "libvorbis" if build.with? "vorbis" # Vorbis support |
