homebrew-core/Formula/libav.rb
2018-11-28 12:30:04 +01:00

95 lines
2.8 KiB
Ruby

class Libav < Formula
desc "Audio and video processing tools"
homepage "https://libav.org/"
url "https://libav.org/releases/libav-12.3.tar.xz"
sha256 "6893cdbd7bc4b62f5d8fd6593c8e0a62babb53e323fbc7124db3658d04ab443b"
revision 1
head "https://git.libav.org/libav.git"
bottle do
sha256 "9f3f6c112053901f2f418b25316bf79692931ccdc72ff7a31aebc81e9169665b" => :mojave
sha256 "4562bac93c0e4469712c985ac350ebce4a7e6474a528a1261c788d9fdcc0f32f" => :high_sierra
sha256 "b6a4e33e38c4ec8147d0ab2002bb5c9bb61c9c1273e0b0e67868b428333eda0f" => :sierra
end
option "with-openssl", "Enable SSL support"
option "with-sdl", "Enable avplay"
option "with-theora", "Enable Theora encoding via libtheora"
depends_on "pkg-config" => :build
# manpages won't be built without texi2html
depends_on "texi2html" => :build if MacOS.version >= :mountain_lion
depends_on "yasm" => :build
depends_on "faac"
depends_on "fdk-aac"
depends_on "freetype"
depends_on "lame"
depends_on "libvorbis"
depends_on "libvpx"
depends_on "opus"
depends_on "x264"
depends_on "xvid"
depends_on "openssl" => :optional
depends_on "sdl" => :optional
depends_on "theora" => :optional
# https://bugzilla.libav.org/show_bug.cgi?id=1033
patch do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/b6e917c/libav/Check-for--no_weak_imports-in-ldflags-on-macOS.patch"
sha256 "986d748ba2c7c83319a59d76fbb0dca22dcd51f0252b3d1f3b80dbda2cf79742"
end
# Upstream patch to fix building with fdk-aac 2
patch do
url "https://github.com/libav/libav/commit/141c960e21d2860e354f9b90df136184dd00a9a8.patch?full_index=1"
sha256 "7081183fed875f71d53cce1e71f6b58fb5d5eee9f30462d35f9367ec2210507b"
end
def install
args = %W[
--disable-debug
--disable-shared
--disable-indev=jack
--prefix=#{prefix}
--cc=#{ENV.cc}
--host-cflags=#{ENV.cflags}
--host-ldflags=#{ENV.ldflags}
--enable-gpl
--enable-libfaac
--enable-libfdk-aac
--enable-libfreetype
--enable-libmp3lame
--enable-libopus
--enable-libvorbis
--enable-libvpx
--enable-libx264
--enable-libxvid
--enable-nonfree
--enable-vda
--enable-version3
]
args << "--enable-libtheora" if build.with? "theora"
args << "--enable-openssl" if build.with? "openssl"
system "./configure", *args
system "make"
bin.install "avconv", "avprobe"
man1.install "doc/avconv.1", "doc/avprobe.1"
if build.with? "sdl"
bin.install "avplay"
man1.install "doc/avplay.1"
end
end
test do
# Create an example mp4 file
system "#{bin}/avconv", "-y", "-filter_complex",
"testsrc=rate=1:duration=1", "#{testpath}/video.mp4"
assert_predicate testpath/"video.mp4", :exist?
end
end