512758e6eb
Realign trailing EOS.
104 lines
3.1 KiB
Ruby
104 lines
3.1 KiB
Ruby
class Audacious < Formula
|
|
desc "Free and advanced audio player based on GTK+"
|
|
homepage "https://audacious-media-player.org/"
|
|
revision 2
|
|
|
|
stable do
|
|
url "https://distfiles.audacious-media-player.org/audacious-3.9.tar.bz2"
|
|
sha256 "2d8044673ac786d71b08004f190bbca368258bf60e6602ffc0d9622835ccb05e"
|
|
|
|
resource "plugins" do
|
|
url "https://distfiles.audacious-media-player.org/audacious-plugins-3.9.tar.bz2"
|
|
sha256 "8bf7f21089cb3406968cc9c71307774aee7100ec4607f28f63cf5690d5c927b8"
|
|
|
|
# Fixes "info_bar.cc:258:21: error: no viable overloaded '='"
|
|
# Upstream PR from 11 Dec 2017 "qtui: fix build with Qt 5.10"
|
|
patch do
|
|
url "https://github.com/audacious-media-player/audacious-plugins/pull/62.patch?full_index=1"
|
|
sha256 "055e11096de7a8b695959b0d5f69a7f84630764f7abd7ec7b4dc3f14a719d9de"
|
|
end
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
sha256 "facd97bdfb3935149d7c51035b38e3a1f7f3c7b705074eb75a1a795844bf739a" => :high_sierra
|
|
sha256 "1acf6566b58d9ab31e088ed8e3f30aba30e171a32e0121f46f0f954a3871f7e9" => :sierra
|
|
sha256 "c9238f08f8f9328ca7b427e2616698d6bea975b33fbcbe2e52c8a2f4b8f5b009" => :el_capitan
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/audacious-media-player/audacious.git"
|
|
|
|
resource "plugins" do
|
|
url "https://github.com/audacious-media-player/audacious-plugins.git"
|
|
end
|
|
|
|
depends_on "automake" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "gettext" => :build
|
|
depends_on "make" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "faad2"
|
|
depends_on "ffmpeg"
|
|
depends_on "flac"
|
|
depends_on "fluid-synth"
|
|
depends_on "glib"
|
|
depends_on "lame"
|
|
depends_on "libbs2b"
|
|
depends_on "libcue"
|
|
depends_on "libnotify"
|
|
depends_on "libsamplerate"
|
|
depends_on "libsoxr"
|
|
depends_on "libvorbis"
|
|
depends_on "mpg123"
|
|
depends_on "neon"
|
|
depends_on "sdl2"
|
|
depends_on "wavpack"
|
|
depends_on "python@2"
|
|
depends_on "qt" => :recommended
|
|
depends_on "gtk+" => :optional
|
|
depends_on "jack" => :optional
|
|
depends_on "libmms" => :optional
|
|
depends_on "libmodplug" => :optional
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--disable-coreaudio
|
|
--enable-mac-media-keys
|
|
--disable-mpris2
|
|
]
|
|
|
|
args << "--enable-qt" if build.with? "qt"
|
|
args << "--disable-gtk" if build.without? "gtk+"
|
|
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
resource("plugins").stage do
|
|
ENV.prepend_path "PKG_CONFIG_PATH", "#{lib}/pkgconfig"
|
|
|
|
system "./autogen.sh" if build.head?
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
audtool does not work due to a broken dbus implementation on macOS, so is not built
|
|
coreaudio output has been disabled as it does not work (Fails to set audio unit input property.)
|
|
GTK+ gui is not built by default as the QT gui has better integration with macOS, and when built, the gtk gui takes precedence
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system bin/"audacious", "--help"
|
|
end
|
|
end
|