homebrew-core/Formula/notmuch.rb
2018-03-21 11:34:41 -07:00

80 lines
2.6 KiB
Ruby

class Notmuch < Formula
desc "Thread-based email index, search, and tagging"
homepage "https://notmuchmail.org"
url "https://notmuchmail.org/releases/notmuch-0.26.tar.gz"
sha256 "d3e894ed2ad9d721a442663f07a6f2a241dc98be7cc4af681f16edf88e0d76df"
revision 2
head "git://notmuchmail.org/git/notmuch"
bottle do
cellar :any
sha256 "21f3d5beb7b75206f61464ee176d5ad2907ccc0b1e3f8ce44f9e46daeac5b6b3" => :high_sierra
sha256 "ce91e80d7587d982304e66e13e047d4a5691fdbbcd7b904b8c1192f6e244d0c2" => :sierra
sha256 "7310b223452c6e46a4e8cde923c1c5811834da033d19dfe28780f105b1e20f7f" => :el_capitan
end
option "without-python@2", "Build without python2 support"
deprecated_option "with-python3" => "with-python"
deprecated_option "without-python" => "without-python@2"
depends_on "pkg-config" => :build
depends_on "libgpg-error" => :build
depends_on "glib"
depends_on "gmime"
depends_on "talloc"
depends_on "xapian"
depends_on "zlib"
depends_on "python@2" => :recommended if MacOS.version <= :snow_leopard
depends_on "emacs" => :optional
depends_on "python" => :optional
depends_on "ruby" => :optional
# Fix SIP issue with python bindings
# A more comprehensive patch has been submitted upstream
# https://notmuchmail.org/pipermail/notmuch/2016/022631.html
patch :DATA
def install
args = %W[--prefix=#{prefix}]
if build.with? "emacs"
ENV.deparallelize # Emacs and parallel builds aren't friends
args << "--with-emacs" << "--emacslispdir=#{elisp}" << "--emacsetcdir=#{elisp}"
else
args << "--without-emacs"
end
args << "--without-ruby" if build.without? "ruby"
system "./configure", *args
system "make", "V=1", "install"
Language::Python.each_python(build) do |python, _version|
cd "bindings/python" do
system python, *Language::Python.setup_install_args(prefix)
end
end
end
test do
(testpath/".notmuch-config").write "[database]\npath=#{testpath}/Mail"
(testpath/"Mail").mkpath
assert_match "0 total", shell_output("#{bin}/notmuch new")
end
end
__END__
diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py
index b1eec2c..bce5190 100644
--- a/bindings/python/notmuch/globals.py
+++ b/bindings/python/notmuch/globals.py
@@ -25,7 +25,7 @@ from notmuch.version import SOVERSION
try:
from os import uname
if uname()[0] == 'Darwin':
- nmlib = CDLL("libnotmuch.{0:s}.dylib".format(SOVERSION))
+ nmlib = CDLL("HOMEBREW_PREFIX/lib/libnotmuch.{0:s}.dylib".format(SOVERSION))
else:
nmlib = CDLL("libnotmuch.so.{0:s}".format(SOVERSION))
except: