# Note: Mutt has a large number of non-upstream patches available for # it, some of which conflict with each other. These patches are also # not kept up-to-date when new versions of mutt (occasionally) come # out. # # To reduce Homebrew's maintenance burden, new patches are not being # accepted for this formula. We would be very happy to see members of # the mutt community maintain a more comprehesive tap with better # support for patches. class Mutt < Formula desc "Mongrel of mail user agents (part elm, pine, mush, mh, etc.)" homepage "http://www.mutt.org/" url "https://bitbucket.org/mutt/mutt/downloads/mutt-1.6.1.tar.gz" mirror "ftp://ftp.mutt.org/pub/mutt/mutt-1.6.1.tar.gz" sha256 "98b26cecc6b1713082fc880344fa345c20bd7ded6459abe18c84429c7cf8ed20" bottle do sha256 "e5caafb7ee55523a3d7cb78be836a14a2b7639b75c519b3263fd74d85204a3ec" => :el_capitan sha256 "c5c5669ee0a69153e0b9c42490e490a0ab66d088defb5703ef4dc24c5e33b44a" => :yosemite sha256 "6d26391605fa8298e542d9dad9c4e13cef36dcf326fb1f44059af2607b27dace" => :mavericks end head do url "https://dev.mutt.org/hg/mutt#default", :using => :hg resource "html" do url "https://dev.mutt.org/doc/manual.html", :using => :nounzip end end conflicts_with "tin", :because => "both install mmdf.5 and mbox.5 man pages" option "with-debug", "Build with debug option enabled" option "with-s-lang", "Build against slang instead of ncurses" option "with-confirm-attachment-patch", "Apply confirm attachment patch" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "openssl" depends_on "tokyo-cabinet" depends_on "gettext" => :optional depends_on "gpgme" => :optional depends_on "libidn" => :optional depends_on "s-lang" => :optional if build.with? "confirm-attachment-patch" patch do url "https://gist.githubusercontent.com/tlvince/5741641/raw/c926ca307dc97727c2bd88a84dcb0d7ac3bb4bf5/mutt-attach.patch" sha256 "da2c9e54a5426019b84837faef18cc51e174108f07dc7ec15968ca732880cb14" end end def install user_admin = Etc.getgrnam("admin").mem.include?(ENV["USER"]) args = %W[ --disable-dependency-tracking --disable-warnings --prefix=#{prefix} --with-ssl=#{Formula["openssl"].opt_prefix} --with-sasl --with-gss --enable-imap --enable-smtp --enable-pop --enable-hcache --with-tokyocabinet ] # This is just a trick to keep 'make install' from trying # to chgrp the mutt_dotlock file (which we can't do if # we're running as an unprivileged user) args << "--with-homespool=.mbox" unless user_admin args << "--disable-nls" if build.without? "gettext" args << "--enable-gpgme" if build.with? "gpgme" args << "--with-slang" if build.with? "s-lang" if build.with? "debug" args << "--enable-debug" else args << "--disable-debug" end system "./prepare", *args system "make" # This permits the `mutt_dotlock` file to be installed under a group # that isn't `mail`. # https://github.com/Homebrew/homebrew/issues/45400 if user_admin inreplace "Makefile", /^DOTLOCK_GROUP =.*$/, "DOTLOCK_GROUP = admin" end system "make", "install" doc.install resource("html") if build.head? end test do system bin/"mutt", "-D" end end