2011-02-14 01:18:20 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2012-05-09 15:25:33 +00:00
|
|
|
class Emacs23Installed < Requirement
|
2012-12-25 21:54:29 +00:00
|
|
|
fatal true
|
|
|
|
env :userpaths
|
|
|
|
|
2013-01-20 02:45:59 +00:00
|
|
|
satisfy do
|
2012-12-25 21:54:29 +00:00
|
|
|
`emacs --version 2>/dev/null` =~ /^GNU Emacs (\d{2})/
|
|
|
|
$1.to_i >= 23
|
|
|
|
end
|
|
|
|
|
2012-05-09 15:25:33 +00:00
|
|
|
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
|
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mu < Formula
|
2011-02-14 01:18:20 +00:00
|
|
|
homepage 'http://www.djcbsoftware.nl/code/mu/'
|
2012-12-13 19:15:28 +00:00
|
|
|
url 'http://mu0.googlecode.com/files/mu-0.9.9.tar.gz'
|
|
|
|
sha1 'eafd678faf852230f55ae262ae005d006a9a839b'
|
2012-07-07 18:08:22 +00:00
|
|
|
|
2012-05-09 15:25:33 +00:00
|
|
|
head 'https://github.com/djcb/mu.git'
|
2011-02-14 01:18:20 +00:00
|
|
|
|
2012-08-26 06:39:35 +00:00
|
|
|
option 'with-emacs', 'Build with emacs support'
|
|
|
|
|
2011-02-14 01:18:20 +00:00
|
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'gmime'
|
|
|
|
depends_on 'xapian'
|
2013-01-27 22:51:36 +00:00
|
|
|
depends_on Emacs23Installed if build.include? 'with-emacs'
|
2012-05-09 15:25:33 +00:00
|
|
|
|
2012-08-26 06:39:35 +00:00
|
|
|
if build.head?
|
2012-12-17 05:52:00 +00:00
|
|
|
depends_on 'automake' => :build
|
|
|
|
depends_on 'libtool' => :build
|
2012-05-09 15:25:33 +00:00
|
|
|
end
|
|
|
|
|
2011-02-14 01:18:20 +00:00
|
|
|
def install
|
2012-05-18 10:10:39 +00:00
|
|
|
# Explicitly tell the build not to include emacs support as the version
|
|
|
|
# shipped by default with Mac OS X is too old.
|
2012-08-26 06:39:35 +00:00
|
|
|
ENV['EMACS'] = 'no' unless build.include? 'with-emacs'
|
2012-05-18 10:10:39 +00:00
|
|
|
|
2012-08-26 06:39:35 +00:00
|
|
|
system 'autoreconf', '-ivf' if build.head?
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-gui=none"
|
2011-02-14 01:18:20 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
2012-04-25 18:39:49 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Existing mu users are recommended to run the following after upgrading:
|
|
|
|
|
|
|
|
mu index --rebuild
|
|
|
|
EOS
|
|
|
|
end
|
2011-02-14 01:18:20 +00:00
|
|
|
end
|