homebrew-core/Formula/mpd.rb

147 lines
4.1 KiB
Ruby

class Mpd < Formula
desc "Music Player Daemon"
homepage "https://www.musicpd.org/"
url "https://www.musicpd.org/download/mpd/0.22/mpd-0.22.8.tar.xz"
sha256 "9617ed08c9ffafcf5f925819251f6b90df3f4f73cf2838c41033e1962104286d"
license "GPL-2.0-or-later"
head "https://github.com/MusicPlayerDaemon/MPD.git"
bottle do
sha256 cellar: :any, arm64_big_sur: "246e858d3140b39ef7c628ea4ec26da926519e7f933dc59298797a67ee8f9d8e"
sha256 cellar: :any, big_sur: "7c8bbe79789bc8c2b870cd1adc36364f01fbb240465c976e6f7049b4740439e4"
sha256 cellar: :any, catalina: "294a0ac898cbb3a3885e923b6bf618d52c9735585f93a22f766d4e709f090a14"
sha256 cellar: :any, mojave: "0e0291c0e5a514f57d079e704d83f1fb975cd142b2d2ad151e91bca764a1fddd"
end
depends_on "boost" => :build
depends_on "meson" => :build
depends_on "ninja" => :build
depends_on "pkg-config" => :build
depends_on "expat"
depends_on "faad2"
depends_on "ffmpeg"
depends_on "flac"
depends_on "fluid-synth"
depends_on "glib"
depends_on "icu4c"
depends_on "lame"
depends_on "libao"
depends_on "libgcrypt"
depends_on "libid3tag"
depends_on "libmpdclient"
depends_on "libnfs"
depends_on "libsamplerate"
depends_on "libshout"
depends_on "libupnp"
depends_on "libvorbis"
depends_on macos: :mojave # requires C++17 features unavailable in High Sierra
depends_on "opus"
depends_on "sqlite"
uses_from_macos "curl"
on_linux do
depends_on "gcc"
end
fails_with gcc: "5"
def install
# mpd specifies -std=gnu++0x, but clang appears to try to build
# that against libstdc++ anyway, which won't work.
# The build is fine with G++.
ENV.libcxx
args = std_meson_args + %W[
--sysconfdir=#{etc}
-Dlibwrap=disabled
-Dmad=disabled
-Dmpcdec=disabled
-Dsoundcloud=disabled
-Dao=enabled
-Dbzip2=enabled
-Dexpat=enabled
-Dffmpeg=enabled
-Dfluidsynth=enabled
-Dnfs=enabled
-Dshout=enabled
-Dupnp=enabled
-Dvorbisenc=enabled
]
system "meson", *args, "output/release", "."
system "ninja", "-C", "output/release"
ENV.deparallelize # Directories are created in parallel, so let's not do that
system "ninja", "-C", "output/release", "install"
(etc/"mpd").install "doc/mpdconf.example" => "mpd.conf"
end
def caveats
<<~EOS
MPD requires a config file to start.
Please copy it from #{etc}/mpd/mpd.conf into one of these paths:
- ~/.mpd/mpd.conf
- ~/.mpdconf
and tailor it to your needs.
EOS
end
plist_options manual: "mpd"
def plist
<<~EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/mpd</string>
<string>--no-daemon</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>ProcessType</key>
<string>Interactive</string>
</dict>
</plist>
EOS
end
test do
on_linux do
# oss_output: Error opening OSS device "/dev/dsp": No such file or directory
# oss_output: Error opening OSS device "/dev/sound/dsp": No such file or directory
return if ENV["HOMEBREW_GITHUB_ACTIONS"]
end
require "expect"
port = free_port
(testpath/"mpd.conf").write <<~EOS
bind_to_address "127.0.0.1"
port "#{port}"
EOS
io = IO.popen("#{bin}/mpd --stdout --no-daemon #{testpath}/mpd.conf 2>&1", "r")
io.expect("output: Successfully detected a osx audio device", 30)
ohai "Connect to MPD command (localhost:#{port})"
TCPSocket.open("localhost", port) do |sock|
assert_match "OK MPD", sock.gets
ohai "Ping server"
sock.puts("ping")
assert_match "OK", sock.gets
sock.close
end
end
end