aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mutt.rb
blob: 0986be0ef67e34bbb6b40639c1995c48b3ada3bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
require 'formula'

class Mutt <Formula
  @url='ftp://ftp.mutt.org/mutt/devel/mutt-1.5.20.tar.gz'
  @homepage='http://www.mutt.org/'
  @md5='027cdd9959203de0c3c64149a7ee351c'
  
  depends_on 'tokyo-cabinet'

  def options
    [
      ['--sidebar-patch', "Apply sidebar (folder list) patch"],
      ['--trash-patch', "Apply trash folder patch"]
    ]
  end

  def patches
    patches = []
    if ARGV.include? '--sidebar-patch'
      patches << 'http://lunar-linux.org/~tchan/mutt/patch-1.5.20.sidebar.20090619.txt'
    end
    if ARGV.include? '--trash-patch'
      patches << 'http://trac.macports.org/raw-attachment/ticket/20412/patch-1.5.20.cd.trash_folder.diff'
    end
    patches
  end

  def install
      configure_args = [
          "--prefix=#{prefix}",
          "--disable-debug",
          "--disable-dependency-tracking",
          "--disable-warnings",
          "--with-ssl",
          "--with-sasl",
          "--with-gnutls",
          "--with-gss",
          "--enable-imap",
          "--enable-smtp",
          "--enable-pop",
          "--enable-hcache",

          # 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
          # unpriviledged user)
          "--with-homespool=.mbox"
      ]

    system "./configure", *configure_args
    system "make install"
  end
end