homebrew-core/Formula/mu.rb
2015-09-25 22:41:08 -07:00

85 lines
2.9 KiB
Ruby

class Mu < Formula
desc "Tool for searching e-mail messages stored in the maildir-format"
homepage "http://www.djcbsoftware.nl/code/mu/"
url "https://github.com/djcb/mu/archive/v0.9.13.tar.gz"
sha256 "a1c88efd3bfeda96e06d7f77a87562c472e6d787f3cca984ddf275a4ea1d4372"
head "https://github.com/djcb/mu.git"
bottle do
sha256 "45184fd8369994f4112191818b7a801e9c599fe4baf7b14fcc59f805fa04b8bf" => :el_capitan
sha256 "36ee1adf0588fa049373a4cd6f2e818038289c4e2d754225711a1d094ef50ee2" => :yosemite
sha256 "317f76b6a49b560b999caf7a3e31b72bced89c0b756a173a5d6abcd10735bcc7" => :mavericks
end
option "with-emacs", "Build with Emacs support (requires Emacs 23 or higher)"
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 Mac OS X is too old.
ENV["EMACS"] = "no" if build.without? "emacs"
# https://github.com/djcb/mu/issues/380
# https://github.com/djcb/mu/issues/332
ENV.O0 if MacOS.version >= :mavericks && ENV.compiler == :clang
system "autoreconf", "-ivf"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
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
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