ffmpeg: add speex support
Closes Homebrew/homebrew#14607. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
67f4b8ec19
commit
720f155b8a
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue