class Getmail < Formula desc "Extensible mail retrieval system with POP3, IMAP4, SSL support" homepage "https://pyropus.ca/software/getmail/" url "https://pyropus.ca/software/getmail/old-versions/getmail-5.15.tar.gz", using: :homebrew_curl sha256 "d453805ffc3f8fe2586ee705733bd666777e53693125fdb149494d22bd14162a" license "GPL-2.0-only" livecheck do url :homepage regex(/href=.*?getmail[._-]v?(\d+(?:\.\d+)+)\.t/i) end bottle do sha256 cellar: :any_skip_relocation, arm64_monterey: "b80ed881704eb314e2232faf1f77ba9db07beaabf06bb9f6b8c0ec0f182c5795" sha256 cellar: :any_skip_relocation, arm64_big_sur: "6c2efe9061839c88f5041cb06a8a9d5aeb8681f57d0f82d889725239b5b14ec6" sha256 cellar: :any_skip_relocation, monterey: "3516003221f5386385397535b0a0b9ce84130b9e52eb0cc9a63819e1b5588fc9" sha256 cellar: :any_skip_relocation, big_sur: "e3481bec43a52377745e09fe62324f4daa35964f862150b23ba8044a6a85eeca" sha256 cellar: :any_skip_relocation, catalina: "a69c9ebda4863ac97ea2259b007d15a4024b7af75912fca0ef9f39cbe972ba8f" sha256 cellar: :any_skip_relocation, mojave: "c729f338af43aebe206c4b0cbddebd1d1619d94a8277e4f1dc43908fba631b8b" end disable! date: "2023-04-16", because: "depends on Python 2" def install libexec.install %w[getmail getmail_fetch getmail_maildir getmail_mbox] inreplace Dir[libexec/"*"], %r{^#!/usr/bin/env python$}, "#!/usr/bin/python" bin.install_symlink Dir["#{libexec}/*"] libexec.install "getmailcore" man1.install Dir["docs/*.1"] end test do system bin/"getmail", "--help" end end