Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
ffmpeg: add with-libssh option to enable SFTP protocol
Browse files Browse the repository at this point in the history
Closes #36567.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
  • Loading branch information
theshortcut authored and MikeMcQuaid committed Feb 6, 2015
1 parent 5a39480 commit c289bd5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Library/Formula/ffmpeg.rb
Expand Up @@ -22,6 +22,7 @@ class Ffmpeg < Formula
option "with-opencore-amr", "Enable Opencore AMR NR/WB audio format"
option "with-openjpeg", "Enable JPEG 2000 image format"
option "with-openssl", "Enable SSL support"
option "with-libssh", "Enable SFTP protocol via libssh"
option "with-schroedinger", "Enable Dirac video format"
option "with-ffplay", "Enable FFplay media player"
option "with-tools", "Enable additional FFmpeg tools"
Expand Down Expand Up @@ -65,6 +66,7 @@ class Ffmpeg < Formula
depends_on "libvidstab" => :optional
depends_on "x265" => :optional
depends_on "openssl" => :optional
depends_on "libssh" => :optional
depends_on "webp" => :optional

def install
Expand Down Expand Up @@ -95,6 +97,7 @@ def install
args << "--enable-libfaac" if build.with? "faac"
args << "--enable-libass" if build.with? "libass"
args << "--enable-ffplay" if build.with? "ffplay"
args << "--enable-libssh" if build.with? "libssh"
args << "--enable-libspeex" if build.with? "speex"
args << "--enable-libschroedinger" if build.with? "schroedinger"
args << "--enable-libfdk-aac" if build.with? "fdk-aac"
Expand Down

0 comments on commit c289bd5

Please sign in to comment.