mboxgrep: remove formula

master
BrewTestBot 2021-12-11 00:13:02 +00:00 committed by Bo Anderson
parent d495460acb
commit 9c7c7e30d5
No known key found for this signature in database
GPG Key ID: 3DB94E204E137D65
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
class Mboxgrep < Formula
desc "Scan a mailbox for messages matching a regular expression"
homepage "https://datatipp.se/mboxgrep/"
url "https://downloads.sourceforge.net/project/mboxgrep/mboxgrep/0.7.9/mboxgrep-0.7.9.tar.gz"
sha256 "78d375a05c3520fad4bca88509d4da0dbe9fba31f36790bd20880e212acd99d7"
license "GPL-2.0"
bottle do
sha256 cellar: :any, catalina: "abf21ae4b879f4a3e4c9c9b3d6640d4a104bb6d640c9f485bfecd261d217ca40"
sha256 cellar: :any, mojave: "93f800f8bae502815c85bac9dd2d7ec85599caa1ee08b6a4860ca8db11ab7276"
sha256 cellar: :any, high_sierra: "431d64ae6c1387c69b052942ee6b268ac9afbcd5bfff9d02bc21aeeaaa9807dd"
sha256 cellar: :any, sierra: "44a294d075cb08e577c4d1c1e45c222bea93f3c8488f9bed54ded5b36797f536"
sha256 cellar: :any, el_capitan: "ecc1d1a83a7ffbc3414feb24c970b89509737f7d1de5c0d8dbd71ba55e008220"
sha256 cellar: :any, yosemite: "08cbb574005db6e34cc191ae4f46670ca35af252e4e6bbc2041a92e32397bc49"
end
disable! date: "2020-12-08", because: :unmaintained
depends_on "pcre"
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"--infodir=#{info}"
system "make"
system "make", "install"
end
test do
system "#{bin}/mboxgrep", "--version"
end
end