48 lines
2.3 KiB
Ruby
48 lines
2.3 KiB
Ruby
class Procmail < Formula
|
|
desc "Autonomous mail processor"
|
|
homepage "https://web.archive.org/web/20151013184044/procmail.org/"
|
|
# NOTE: Use the patched version from Apple
|
|
url "https://opensource.apple.com/tarballs/procmail/procmail-14.tar.gz"
|
|
sha256 "f3bd815d82bb70625f2ae135df65769c31dd94b320377f0067cd3c2eab968e81"
|
|
|
|
# Procmail is no longer developed/maintained and the formula uses tarballs
|
|
# from Apple, so we check this source for new releases. The "version" here is
|
|
# the numeric portion of the archive name (e.g. 14 for procmail-14.tar.gz)
|
|
# instead of the actual procmail version.
|
|
livecheck do
|
|
url "https://opensource.apple.com/tarballs/procmail/"
|
|
regex(/href=.*?procmail[._-]v?(\d+(?:\.\d+)*)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "e39fb3a7e1b24091190e1348b3a0cecf28f189828c5b5b126e3de0bfedaa02ac"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "c29ed505600498218a3733d68ebff1eb29c259ac3789da32dc2c76d9aaa33527"
|
|
sha256 cellar: :any_skip_relocation, catalina: "a7f6ee9550f27ea88322a4c4c88b04421e6d2c676248a914571a2fbffd6d425f"
|
|
sha256 cellar: :any_skip_relocation, mojave: "48be3e5215b4ac296ef1f9150b313964112e5c7d04fe20489f336342548656e0"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "c64920b1989d941d9aa4de7c275cf2e80306cb8bd2ee5d8263e883ddab7ef2e3"
|
|
sha256 cellar: :any_skip_relocation, sierra: "c64ccf998d9c71d1b73004abe4c96a8c35993cf4c1a899cd6d92bfab82b9272a"
|
|
sha256 cellar: :any_skip_relocation, el_capitan: "3328bcda4649612afba606950e59f4cb0c22e10fe97a4f1e38f190e3e4115800"
|
|
sha256 cellar: :any_skip_relocation, yosemite: "cd5a5cdfbe9d03067533df0ef3f09cc2c05bd16a9b75d2d19cd9c2d1da2986e5"
|
|
end
|
|
|
|
def install
|
|
system "make", "-C", "procmail", "BASENAME=#{prefix}", "MANDIR=#{man}",
|
|
"LOCKINGTEST=1", "install"
|
|
end
|
|
|
|
test do
|
|
path = testpath/"test.mail"
|
|
path.write <<~EOS
|
|
From alice@example.net Tue Sep 15 15:33:41 2015
|
|
Date: Tue, 15 Sep 2015 15:33:41 +0200
|
|
From: Alice <alice@example.net>
|
|
To: Bob <bob@example.net>
|
|
Subject: Test
|
|
|
|
please ignore
|
|
EOS
|
|
assert_match "Subject: Test", shell_output("#{bin}/formail -X 'Subject' < #{path}")
|
|
assert_match "please ignore", shell_output("#{bin}/formail -I '' < #{path}")
|
|
end
|
|
end
|