homebrew-core/Formula/notmuch.rb
Jack Nagel 7a8c2f781f notmuch 0.11.1
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-03-13 23:08:56 -05:00

19 lines
590 B
Ruby

require 'formula'
class Notmuch < Formula
homepage 'http://notmuchmail.org'
url 'http://notmuchmail.org/releases/notmuch-0.11.1.tar.gz'
sha1 '05694ae8762076bf91d63b199e72a12e5ce012b0'
depends_on 'xapian'
depends_on 'talloc'
depends_on 'gmime'
def install
# requires a newer emacs than OS X provides, so disable the bindings
system "./configure", "--prefix=#{prefix}", "--without-emacs"
system "make install"
system "install_name_tool", "-change", "libnotmuch.2.dylib",
"#{lib}/libnotmuch.2.dylib", "#{bin}/notmuch"
end
end