ffmpeg: add libbs2b option.
Closes Homebrew/homebrew#43670. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
a5da98abae
commit
b9c722fbcc
1 changed files with 2 additions and 0 deletions
|
@ -71,6 +71,7 @@ class Ffmpeg < Formula
|
|||
depends_on "libssh" => :optional
|
||||
depends_on "webp" => :optional
|
||||
depends_on "zeromq" => :optional
|
||||
depends_on "libbs2b" => :optional
|
||||
|
||||
def install
|
||||
args = ["--prefix=#{prefix}",
|
||||
|
@ -116,6 +117,7 @@ class Ffmpeg < Formula
|
|||
args << "--enable-libx265" if build.with? "x265"
|
||||
args << "--enable-libwebp" if build.with? "webp"
|
||||
args << "--enable-libzmq" if build.with? "zeromq"
|
||||
args << "--enable-libbs2b" if build.with? "libbs2b"
|
||||
args << "--disable-indev=qtkit" if build.without? "qtkit"
|
||||
|
||||
if build.with? "openjpeg"
|
||||
|
|
Loading…
Reference in a new issue