mpv 0.30
Closes #45854. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
76220f7bd5
commit
82a4502568
2 changed files with 53 additions and 1 deletions
53
Formula/mpv.rb
Normal file
53
Formula/mpv.rb
Normal file
|
@ -0,0 +1,53 @@
|
|||
class Mpv < Formula
|
||||
desc "Media player based on MPlayer and mplayer2"
|
||||
homepage "https://mpv.io"
|
||||
url "https://github.com/mpv-player/mpv/archive/v0.30.0.tar.gz"
|
||||
sha256 "33a1bcb7e74ff17f070e754c15c52228cf44f2cefbfd8f34886ae81df214ca35"
|
||||
head "https://github.com/mpv-player/mpv.git"
|
||||
|
||||
depends_on "docutils" => :build
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "python" => :build
|
||||
|
||||
depends_on "ffmpeg"
|
||||
depends_on "jpeg"
|
||||
depends_on "libarchive"
|
||||
depends_on "libass"
|
||||
depends_on "little-cms2"
|
||||
depends_on "lua@5.1"
|
||||
|
||||
depends_on "mujs"
|
||||
depends_on "uchardet"
|
||||
depends_on "vapoursynth"
|
||||
depends_on "youtube-dl"
|
||||
|
||||
def install
|
||||
# LANG is unset by default on macOS 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-html-build
|
||||
--enable-javascript
|
||||
--enable-libmpv-shared
|
||||
--enable-lua
|
||||
--enable-libarchive
|
||||
--enable-uchardet
|
||||
--confdir=#{etc}/mpv
|
||||
--datadir=#{pkgshare}
|
||||
--mandir=#{man}
|
||||
--docdir=#{doc}
|
||||
--zshdir=#{zsh_completion}
|
||||
]
|
||||
|
||||
system "./bootstrap.py"
|
||||
system "python3", "waf", "configure", *args
|
||||
system "python3", "waf", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system bin/"mpv", "--ao=null", test_fixtures("test.wav")
|
||||
end
|
||||
end
|
|
@ -21,7 +21,6 @@
|
|||
"jsl": "homebrew/cask",
|
||||
"keybase": "homebrew/cask",
|
||||
"meld": "homebrew/cask",
|
||||
"mpv": "homebrew/cask",
|
||||
"osxfuse": "homebrew/cask",
|
||||
"phantomjs": "homebrew/cask",
|
||||
"quassel": "homebrew/cask",
|
||||
|
|
Loading…
Reference in a new issue