diff options
| author | Chris Streeter | 2012-08-31 13:46:14 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-31 18:45:42 -0700 |
| commit | 5037035e1204b657c90cdffafc3e54e13b5c2506 (patch) | |
| tree | 6cd165986fc11fa481f371f4cb818d7ed6ee27e3 | |
| parent | e65131d7e7ab38a19a36dfe56070a0e07ab89189 (diff) | |
| download | homebrew-5037035e1204b657c90cdffafc3e54e13b5c2506.tar.bz2 | |
ffmpeg: add speex support
Closes #14607.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/ffmpeg.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/ffmpeg.rb b/Library/Formula/ffmpeg.rb index bfe49d443..9470c7975 100644 --- a/Library/Formula/ffmpeg.rb +++ b/Library/Formula/ffmpeg.rb @@ -45,6 +45,7 @@ class Ffmpeg < Formula depends_on 'libass' if build.include? 'with-libass' depends_on 'openjpeg' if build.include? 'with-openjpeg' depends_on 'sdl' if build.include? 'with-ffplay' + depends_on 'speex' if build.include? 'with-speex' def install args = ["--prefix=#{prefix}", @@ -74,6 +75,7 @@ class Ffmpeg < Formula args << "--enable-libass" if build.include? 'with-libass' args << "--enable-libopenjpeg" if build.include? 'with-openjpeg' args << "--enable-ffplay" if build.include? 'with-ffplay' + args << "--enable-libspeex" if build.include? 'with-speex' # For 32-bit compilation under gcc 4.2, see: # http://trac.macports.org/ticket/20938#comment:22 |
