aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBenjamin Stiglitz2011-07-10 15:08:39 -0400
committerAdam Vandenberg2011-07-30 10:39:40 -0700
commit228aebe62a5c3266a8e8169b9563554afae193e9 (patch)
treebd1a3d168305bd88d615c63e923b8dc51734e72f /Library/Formula
parent7563496e245fb27833dbb5af41b99e160939d920 (diff)
downloadhomebrew-228aebe62a5c3266a8e8169b9563554afae193e9.tar.bz2
mutt: add support for ignore-thread patch
Allows application of the ignore-thread patch listed at <http://wiki.mutt.org/index.cgi?PatchList>. Adds a new command, ignore-thread, which ignores and unignores message threads. Ignored threads stay collapsed in the message list. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mutt.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Formula/mutt.rb b/Library/Formula/mutt.rb
index fb42a0a59..5c7454c47 100644
--- a/Library/Formula/mutt.rb
+++ b/Library/Formula/mutt.rb
@@ -13,7 +13,8 @@ class Mutt < Formula
['--enable-debug', "Build with debug option enabled"],
['--sidebar-patch', "Apply sidebar (folder list) patch"],
['--trash-patch', "Apply trash folder patch"],
- ['--with-slang', "Build against slang instead of ncurses"]
+ ['--with-slang', "Build against slang instead of ncurses"],
+ ['--ignore-thread-patch', "Apply ignore-thread patch"]
]
end
@@ -28,6 +29,10 @@ class Mutt < Formula
p << 'http://patch-tracker.debian.org/patch/series/dl/mutt/1.5.21-5/features/trash-folder'
end
+ if ARGV.include? '--ignore-thread-patch'
+ p << 'http://ben.at.tanjero.com/patches/ignore-thread-1.5.21.patch'
+ end
+
return p
end