aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrett Koonce2014-10-31 17:36:27 -0700
committerBrett Koonce2014-11-01 20:56:11 -0700
commitf58435974be6b47f0bc9044f736dc51ed550f07c (patch)
tree402f5ed4a4c86860d688281f2706ae200bd5d1cc /Library
parentaa69b7effc90d3a1599174157774689556548384 (diff)
downloadhomebrew-f58435974be6b47f0bc9044f736dc51ed550f07c.tar.bz2
mu 0.9.10
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mu.rb40
1 files changed, 20 insertions, 20 deletions
diff --git a/Library/Formula/mu.rb b/Library/Formula/mu.rb
index 9257aa825..d586aca60 100644
--- a/Library/Formula/mu.rb
+++ b/Library/Formula/mu.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Emacs23Installed < Requirement
fatal true
env :userpaths
- default_formula 'emacs'
+ default_formula "emacs"
satisfy do
`emacs --version 2>/dev/null` =~ /^GNU Emacs (\d{2})/
@@ -12,37 +12,37 @@ class Emacs23Installed < Requirement
end
class Mu < Formula
- homepage 'http://www.djcbsoftware.nl/code/mu/'
- url 'https://github.com/djcb/mu/archive/v0.9.9.6.tar.gz'
- sha1 '45feb511fecf8b306c87a42f3a84858ac442642c'
+ homepage "http://www.djcbsoftware.nl/code/mu/"
+ url "https://github.com/djcb/mu/archive/v0.9.10.tar.gz"
+ sha1 "5c21aeed9471f2d0aaa76307a3ec70fc86f0817b"
- head 'https://github.com/djcb/mu.git'
+ head "https://github.com/djcb/mu.git"
- option 'with-emacs', 'Build with emacs support'
+ option "with-emacs", "Build with emacs support"
- depends_on 'autoconf' => :build
- depends_on 'automake' => :build
- depends_on 'libtool' => :build
- depends_on 'pkg-config' => :build
- depends_on 'gettext'
- depends_on 'glib'
- depends_on 'gmime'
- depends_on 'xapian'
- depends_on Emacs23Installed if build.with? 'emacs'
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
+ depends_on "pkg-config" => :build
+ depends_on "gettext"
+ depends_on "glib"
+ depends_on "gmime"
+ depends_on "xapian"
+ depends_on Emacs23Installed if build.with? "emacs"
- env :std if build.with? 'emacs'
+ env :std if build.with? "emacs"
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' if build.without? 'emacs'
+ ENV["EMACS"] = "no" if build.without? "emacs"
# I dunno.
# https://github.com/djcb/mu/issues/332
# https://github.com/Homebrew/homebrew/issues/25524
- ENV.delete 'MACOSX_DEPLOYMENT_TARGET'
+ ENV.delete "MACOSX_DEPLOYMENT_TARGET"
- system 'autoreconf', '-ivf'
+ system "autoreconf", "-ivf"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-gui=none"