76 lines
2.3 KiB
Ruby
76 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.23.0.tar.gz"
|
|
sha256 "8aeefe5970587dfc454d2b89726b603f156bd7a9ae427654eef0d60c68d94998"
|
|
head "https://github.com/mpv-player/mpv.git"
|
|
|
|
bottle do
|
|
sha256 "b530a5d4ddc42c4da7748c4d3e084b2696c046bc76da56cd68941f7c9499ffef" => :sierra
|
|
sha256 "552ab34ac9899491fbf69ee84fa704bf8980444c4252ebe820a547a250d20ca1" => :el_capitan
|
|
sha256 "24eba5a71a4c3c5e8fd90825e5ab530fe442225759ea7f78ad2dc1d1e9ef1246" => :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 "jack" => :optional
|
|
depends_on "libaacs" => :optional
|
|
depends_on "libarchive" => :optional
|
|
depends_on "libbluray" => :optional
|
|
depends_on "libcaca" => :optional
|
|
depends_on "libdvdnav" => :optional
|
|
depends_on "libdvdread" => :optional
|
|
depends_on "pulseaudio" => :optional
|
|
depends_on "rubberband" => :optional
|
|
depends_on "uchardet" => :optional
|
|
depends_on "vapoursynth" => :optional
|
|
depends_on :x11 => :optional
|
|
|
|
depends_on :macos => :mountain_lion
|
|
|
|
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
|
|
--enable-html-build
|
|
--confdir=#{etc}/mpv
|
|
--datadir=#{pkgshare}
|
|
--mandir=#{man}
|
|
--docdir=#{doc}
|
|
--zshdir=#{zsh_completion}
|
|
]
|
|
args << "--enable-libarchive" if build.with? "libarchive"
|
|
args << "--enable-pulse" if build.with? "pulseaudio"
|
|
|
|
system "./bootstrap.py"
|
|
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
|