116 lines
3.4 KiB
Ruby
116 lines
3.4 KiB
Ruby
class FfmpegAT28 < Formula
|
|
desc "Play, record, convert, and stream audio and video"
|
|
homepage "https://ffmpeg.org/"
|
|
url "https://ffmpeg.org/releases/ffmpeg-2.8.15.tar.bz2"
|
|
sha256 "35647f6c1f6d4a1719bc20b76bf4c26e4ccd665f46b5676c0e91c5a04622ee21"
|
|
revision 8
|
|
|
|
bottle do
|
|
sha256 "74065f85e29e7e9c2e19e31145855e7a123e24ea700499378722d0ae008bccac" => :catalina
|
|
sha256 "29c21307edc34fb9fcbddf7bcaa7a8aaee843c65c3bb0520e713073f09e07bdd" => :mojave
|
|
sha256 "02c91ab047a63b1f7fe8420cd0ca05e0d68ea9ef95de20421f6970b2e85a45bd" => :high_sierra
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "texi2html" => :build
|
|
depends_on "yasm" => :build
|
|
|
|
depends_on "fontconfig"
|
|
depends_on "freetype"
|
|
depends_on "frei0r"
|
|
depends_on "lame"
|
|
depends_on "libass"
|
|
depends_on "libvo-aacenc"
|
|
depends_on "libvorbis"
|
|
depends_on "libvpx"
|
|
depends_on "opencore-amr"
|
|
depends_on "opus"
|
|
depends_on "rtmpdump"
|
|
depends_on "sdl"
|
|
depends_on "snappy"
|
|
depends_on "speex"
|
|
depends_on "theora"
|
|
depends_on "x264"
|
|
depends_on "x265"
|
|
depends_on "xvid"
|
|
|
|
def install
|
|
# Fixes "dyld: lazy symbol binding failed: Symbol not found: _clock_gettime"
|
|
if MacOS.version == "10.11" && MacOS::Xcode.version >= "8.0"
|
|
inreplace %w[libavdevice/v4l2.c libavutil/time.c], "HAVE_CLOCK_GETTIME",
|
|
"UNDEFINED_GIBBERISH"
|
|
end
|
|
|
|
# Work around Xcode 11 clang bug
|
|
# https://bitbucket.org/multicoreware/x265/issues/514/wrong-code-generated-on-macos-1015
|
|
ENV.append_to_cflags "-fno-stack-check" if DevelopmentTools.clang_build_version >= 1010
|
|
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--enable-shared
|
|
--enable-pthreads
|
|
--enable-gpl
|
|
--enable-version3
|
|
--enable-hardcoded-tables
|
|
--enable-avresample
|
|
--cc=#{ENV.cc}
|
|
--host-cflags=#{ENV.cflags}
|
|
--host-ldflags=#{ENV.ldflags}
|
|
--enable-ffplay
|
|
--enable-libmp3lame
|
|
--enable-libopus
|
|
--enable-libsnappy
|
|
--enable-libtheora
|
|
--enable-libvo-aacenc
|
|
--enable-libvorbis
|
|
--enable-libvpx
|
|
--enable-libx264
|
|
--enable-libx265
|
|
--enable-libxvid
|
|
--enable-libfontconfig
|
|
--enable-libfreetype
|
|
--enable-frei0r
|
|
--enable-libass
|
|
--enable-libopencore-amrnb
|
|
--enable-libopencore-amrwb
|
|
--enable-librtmp
|
|
--enable-libspeex
|
|
--enable-opencl
|
|
--disable-indev=jack
|
|
]
|
|
|
|
# A bug in a dispatch header on 10.10, included via CoreFoundation,
|
|
# prevents GCC from building VDA support. GCC has no problems on
|
|
# 10.9 and earlier.
|
|
# See: https://github.com/Homebrew/homebrew/issues/33741
|
|
if MacOS.version < :yosemite || ENV.compiler == :clang
|
|
args << "--enable-vda"
|
|
else
|
|
args << "--disable-vda"
|
|
end
|
|
|
|
system "./configure", *args
|
|
|
|
inreplace "config.mak" do |s|
|
|
shflags = s.get_make_var "SHFLAGS"
|
|
if shflags.gsub!(" -Wl,-read_only_relocs,suppress", "")
|
|
s.change_make_var! "SHFLAGS", shflags
|
|
end
|
|
end
|
|
|
|
system "make", "install"
|
|
|
|
# Build and install additional FFmpeg tools
|
|
system "make", "alltools"
|
|
bin.install Dir["tools/*"].select { |f| File.executable? f }
|
|
end
|
|
|
|
test do
|
|
# Create an example mp4 file
|
|
system "#{bin}/ffmpeg", "-y", "-filter_complex",
|
|
"testsrc=rate=1:duration=1", "#{testpath}/video.mp4"
|
|
assert_predicate testpath/"video.mp4", :exist?
|
|
end
|
|
end
|