87 lines
3 KiB
Ruby
87 lines
3 KiB
Ruby
# Note that odd release numbers indicate unstable releases.
|
|
# Please only submit PRs for [x.x.even] version numbers:
|
|
# https://github.com/djcb/mu/commit/23f4a64bdcdee3f9956a39b9a5a4fd0c5c2370ba
|
|
class Mu < Formula
|
|
desc "Tool for searching e-mail messages stored in the maildir-format"
|
|
homepage "https://www.djcbsoftware.nl/code/mu/"
|
|
url "https://github.com/djcb/mu/archive/v0.9.16.tar.gz"
|
|
sha256 "af086880b00a6954bc1135b226b66a33205893600c8dd04139a6871c62c6f05c"
|
|
revision 2
|
|
head "https://github.com/djcb/mu.git"
|
|
|
|
bottle do
|
|
sha256 "e61729835bf9aacabeedfb3f6b322b35cb800f21bd3305746c1353dd02d71af0" => :sierra
|
|
sha256 "29d6adfc17a0c4646fa578bf5a1bffe8a93c4988ce69abe6847998e0130905a6" => :el_capitan
|
|
sha256 "66ea21bc3a9e88409ec38e8b942465e691337d2087a04e8c2e07c95586dc6e34" => :yosemite
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gettext"
|
|
depends_on "glib"
|
|
depends_on "gmime"
|
|
depends_on "xapian"
|
|
depends_on :emacs => ["23", :optional]
|
|
|
|
def install
|
|
# Explicitly tell the build not to include emacs support as the version
|
|
# shipped by default with macOS is too old.
|
|
ENV["EMACS"] = "no" if build.without? "emacs"
|
|
|
|
system "autoreconf", "-ivf"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-lispdir=#{elisp}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Existing mu users are recommended to run the following after upgrading:
|
|
|
|
mu index --rebuild
|
|
EOS
|
|
end
|
|
|
|
# Regression test for:
|
|
# https://github.com/djcb/mu/issues/397
|
|
# https://github.com/djcb/mu/issues/380
|
|
# https://github.com/djcb/mu/issues/332
|
|
test do
|
|
mkdir (testpath/"cur")
|
|
|
|
(testpath/"cur/1234567890.11111_1.host1!2,S").write <<-EOS.undent
|
|
From: "Road Runner" <fasterthanyou@example.com>
|
|
To: "Wile E. Coyote" <wile@example.com>
|
|
Date: Mon, 4 Aug 2008 11:40:49 +0200
|
|
Message-id: <1111111111@example.com>
|
|
|
|
Beep beep!
|
|
EOS
|
|
|
|
(testpath/"cur/0987654321.22222_2.host2!2,S").write <<-EOS.undent
|
|
From: "Wile E. Coyote" <wile@example.com>
|
|
To: "Road Runner" <fasterthanyou@example.com>
|
|
Date: Mon, 4 Aug 2008 12:40:49 +0200
|
|
Message-id: <2222222222@example.com>
|
|
References: <1111111111@example.com>
|
|
|
|
This used to happen outdoors. It was more fun then.
|
|
EOS
|
|
|
|
system "#{bin}/mu", "index",
|
|
"--muhome",
|
|
testpath,
|
|
"--maildir=#{testpath}"
|
|
|
|
mu_find = "#{bin}/mu find --muhome #{testpath} "
|
|
find_message = "#{mu_find} msgid:2222222222@example.com"
|
|
find_message_and_related = "#{mu_find} --include-related msgid:2222222222@example.com"
|
|
|
|
assert_equal 1, shell_output(find_message).lines.count
|
|
assert_equal 2, shell_output(find_message_and_related).lines.count,
|
|
"You tripped over https://github.com/djcb/mu/issues/380\n\t--related doesn't work. Everything else should"
|
|
end
|
|
end
|