aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/notmuch.rb
blob: 58961c2cd308d17b8272823c284075711b418702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Notmuch < Formula
  homepage 'http://notmuchmail.org'
  url 'http://notmuchmail.org/releases/notmuch-0.13.2.tar.gz'
  sha1 '368b2451a64b1e3c574e688100700fc941ff2ea1'

  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"
  end
end