Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

herrie: mark as deprecated, fix homepage #70772

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Formula/herrie.rb
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
class Herrie < Formula
desc "Minimalistic audio player built upon Ncurses"
homepage "https://herrie.info/"
homepage "https://github.com/EdSchouten/herrie"
url "https://github.com/EdSchouten/herrie/releases/download/herrie-2.2/herrie-2.2.tar.bz2"
sha256 "142341072920f86b6eb570b8f13bf5fd87c06cf801543dc7d1a819e39eb9fb2b"
license "BSD-2-Clause"
revision 1

livecheck do
url "https://github.com/EdSchouten/herrie"
end

bottle do
sha256 catalina: "ceb3bb01f7cc36c3d55d785ff6d06706708ce11e81bd9da29b4dcdaaa6476f9a"
sha256 mojave: "689038931cdc86fee22b0e4217bdb4eccc5c7591254c67300aade0637ae1dc5e"
sha256 high_sierra: "65631ae69a925bf48a3e4167807b13c36988db1bd1d4f7ed311356da39344c9a"
sha256 sierra: "f794117e72309d83bc947463032c262a7341d21eabc5099712016d0f078804f2"
end

deprecate! date: "2021-02-09", because: :repo_archived
carlocab marked this conversation as resolved.
Show resolved Hide resolved

depends_on "pkg-config" => :build
depends_on "gettext"
depends_on "glib"
Expand All @@ -25,6 +23,8 @@ class Herrie < Formula
depends_on "libvorbis"
depends_on "mad"

uses_from_macos "ncurses"

def install
ENV["PREFIX"] = prefix
system "./configure", "no_modplug", "no_xspf", "coreaudio", "ncurses"
Expand Down