ffmpeg: add libquvi support for devel.
Closes Homebrew/homebrew#24653. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
8cca9bf90b
commit
be6943ad24
1 changed files with 2 additions and 0 deletions
|
@ -55,6 +55,7 @@ class Ffmpeg < Formula
|
|||
depends_on 'opus' => :optional
|
||||
depends_on 'frei0r' => :optional
|
||||
depends_on 'libcaca' => :optional
|
||||
depends_on 'libquvi' => :optional if build.devel?
|
||||
|
||||
def install
|
||||
args = ["--prefix=#{prefix}",
|
||||
|
@ -92,6 +93,7 @@ class Ffmpeg < Formula
|
|||
args << "--enable-libopus" if build.with? 'opus'
|
||||
args << "--enable-frei0r" if build.with? 'frei0r'
|
||||
args << "--enable-libcaca" if build.with? 'libcaca'
|
||||
args << "--enable-libquvi" if build.with? 'libquvi'
|
||||
|
||||
if build.with? 'openjpeg'
|
||||
args << '--enable-libopenjpeg'
|
||||
|
|
Loading…
Reference in a new issue