f9b207bb27
update the notmuch formula to version 0.17 Closes Homebrew/homebrew#25637. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
69 lines
1.6 KiB
Ruby
69 lines
1.6 KiB
Ruby
require 'formula'
|
|
|
|
class NewEnoughEmacs < Requirement
|
|
fatal true
|
|
|
|
def satisfied?
|
|
`emacs --version`.split("\n")[0] =~ /GNU Emacs (\d+)\./
|
|
major_version = ($1 || 0).to_i
|
|
major_version >= 23
|
|
end
|
|
|
|
def message
|
|
"Emacs support requires at least Emacs 23."
|
|
end
|
|
end
|
|
|
|
class Notmuch < Formula
|
|
homepage 'http://notmuchmail.org'
|
|
url 'http://notmuchmail.org/releases/notmuch-0.17.tar.gz'
|
|
sha1 '0fe14140126a0da04754f548edf7e7b135eeec86'
|
|
|
|
option "emacs", "Install emacs support."
|
|
|
|
depends_on NewEnoughEmacs if build.include? "emacs"
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'xapian'
|
|
depends_on 'talloc'
|
|
depends_on 'gmime'
|
|
|
|
def patches
|
|
p = []
|
|
# Fix for mkdir behavior change in 10.9: http://notmuchmail.org/pipermail/notmuch/2013/016388.html
|
|
p << DATA
|
|
end
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}"]
|
|
if build.include? "emacs"
|
|
args << "--with-emacs"
|
|
else
|
|
args << "--without-emacs"
|
|
end
|
|
system "./configure", *args
|
|
|
|
system "make", "V=1", "install"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/Makefile.local b/Makefile.local
|
|
index 72524eb..c85e09c 100644
|
|
--- a/Makefile.local
|
|
+++ b/Makefile.local
|
|
@@ -236,11 +236,11 @@ endif
|
|
quiet ?= $($(shell echo $1 | sed -e s'/ .*//'))
|
|
|
|
%.o: %.cc $(global_deps)
|
|
- @mkdir -p .deps/$(@D)
|
|
+ @mkdir -p $(patsubst %/.,%,.deps/$(@D))
|
|
$(call quiet,CXX $(CPPFLAGS) $(CXXFLAGS)) -c $(FINAL_CXXFLAGS) $< -o $@ -MD -MP -MF .deps/$*.d
|
|
|
|
%.o: %.c $(global_deps)
|
|
- @mkdir -p .deps/$(@D)
|
|
+ @mkdir -p $(patsubst %/.,%,.deps/$(@D))
|
|
$(call quiet,CC $(CPPFLAGS) $(CFLAGS)) -c $(FINAL_CFLAGS) $< -o $@ -MD -MP -MF .deps/$*.d
|
|
|
|
.PHONY : clean
|
|
--
|
|
1.8.4.2
|