homebrew-core/Formula/mpv.rb
2016-10-19 22:29:15 -04:00

77 lines
2.3 KiB
Ruby

class Mpv < Formula
desc "Media player based on MPlayer and mplayer2"
homepage "https://mpv.io"
url "https://github.com/mpv-player/mpv/archive/v0.21.0.tar.gz"
sha256 "d05f8ece859c500ef1649cdfea911ec1529df1898b8fda3e217766dc28dc9bd3"
head "https://github.com/mpv-player/mpv.git"
bottle do
sha256 "30e5f30907dfba8a185e009353ab3640e52792a0cf6913faf35e5e45c4b8f28f" => :sierra
sha256 "a17d0405b9eece2ff7881c7221299dd73ac854e6500702549ae518ca2b0cb328" => :el_capitan
sha256 "1b9a41055c10faae6a4b6f8939d7c99f6d2cc0b8792920e56233106201d97f6a" => :yosemite
end
option "with-bundle", "Enable compilation of the .app bundle."
depends_on "pkg-config" => :build
depends_on "docutils" => :build
depends_on :python3 => :build
depends_on "libass"
depends_on "ffmpeg"
depends_on "jpeg" => :recommended
depends_on "little-cms2" => :recommended
depends_on "lua" => :recommended
depends_on "youtube-dl" => :recommended
depends_on "libarchive" => :optional
depends_on "libcaca" => :optional
depends_on "libdvdread" => :optional
depends_on "libdvdnav" => :optional
depends_on "libbluray" => :optional
depends_on "libaacs" => :optional
depends_on "vapoursynth" => :optional
depends_on "uchardet" => :optional
depends_on :x11 => :optional
depends_on :macos => :mountain_lion
resource "waf" do
url "https://waf.io/waf-1.9.2"
sha256 "7abb4fbe61d12b8ef6a3163653536da7ee31709299d8f17400d71a43247cea81"
end
def install
# LANG is unset by default on osx and causes issues when calling getlocale
# or getdefaultlocale in docutils. Force the default c/posix locale since
# that's good enough for building the manpage.
ENV["LC_ALL"] = "C"
args = %W[
--prefix=#{prefix}
--enable-zsh-comp
--enable-libmpv-shared
--confdir=#{etc}/mpv
--datadir=#{pkgshare}
--mandir=#{man}
--docdir=#{doc}
--zshdir=#{zsh_completion}
]
args << "--enable-libarchive" if build.with? "libarchive"
waf = resource("waf")
buildpath.install waf.files("waf-#{waf.version}" => "waf")
system "python3", "waf", "configure", *args
system "python3", "waf", "install"
if build.with? "bundle"
system "python3", "TOOLS/osxbundle.py", "build/mpv"
prefix.install "build/mpv.app"
end
end
test do
system bin/"mpv", "--ao=null", test_fixtures("test.wav")
end
end