blob: ba24e8d01f1db999ae79a4a5f1567661aad0e9ac (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
require 'formula'
class Emacs23Installed < Requirement
def message; <<-EOS.undent
Emacs 23 or greater is required to build this software.
You can install this with Homebrew:
brew install emacs
Or you can use any other Emacs distribution
that provides version 23 or greater.
EOS
end
def satisfied?
`emacs --version 2>/dev/null` =~ /^GNU Emacs (\d{2})/
$1.to_i >= 23
end
def fatal?
true
end
end
class Mu < Formula
homepage 'http://www.djcbsoftware.nl/code/mu/'
url 'http://mu0.googlecode.com/files/mu-0.9.8.4.tar.gz'
sha1 'd586dddcc5b2f73e0bc1c835c199644a65c0f5b5'
head 'https://github.com/djcb/mu.git'
depends_on 'gettext'
depends_on 'glib'
depends_on 'gmime'
depends_on 'xapian'
depends_on Emacs23Installed.new if ARGV.include? '--with-emacs'
if ARGV.build_head? and MacOS.xcode_version >= "4.3"
depends_on "automake" => :build
depends_on "libtool" => :build
end
# Fixes configure error using Xapian-1.2.10, where it thinks 1.2.10 < 1.2
# Patch submitted upstream: https://github.com/djcb/mu/issues/19
# Fixed in head. Remove at 0.9.8.5
def patches
DATA unless ARGV.build_head?
end
def options
[['--with-emacs', 'Build with emacs support']]
end
def install
# Explicitly tell the build not to include emacs support as the version
# shipped by default with Mac OS X is too old.
ENV['EMACS'] = 'no' unless ARGV.include? '--with-emacs'
system 'autoreconf', '-ivf' if ARGV.build_head?
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking", "--with-gui=none"
system "make"
system "make install"
end
def caveats; <<-EOS.undent
Existing mu users are recommended to run the following after upgrading:
mu index --rebuild
EOS
end
end
__END__
--- a/configure 2012-05-08 04:26:10.000000000 -0700
+++ b/configure 2012-05-11 23:20:57.000000000 -0700
@@ -17640,7 +17640,7 @@
xapian_version=$($XAPIAN_CONFIG --version | sed -e 's/.* //')
fi
case $xapian_version in #(
- 1.[2-9].[0-9]) :
+ 1.[2-9].[0-9]*) :
;; #(
*) :
as_fn_error $? "*** xapian version >= 1.2 needed, but version $xapian_version found." "$LINENO" 5 ;;
|