diff options
| author | Sven Strothoff | 2013-12-24 23:46:10 +0100 | 
|---|---|---|
| committer | Adam Vandenberg | 2014-02-11 20:48:04 -0800 | 
| commit | 03ce0e4355e0acf3031c14823834ac332e4d6fe7 (patch) | |
| tree | 9931dc455f2f3d518747086f3f53472805f68900 | |
| parent | 980683e984f0c793e1de3f8330c3cfee05236869 (diff) | |
| download | homebrew-03ce0e4355e0acf3031c14823834ac332e4d6fe7.tar.bz2 | |
mutt: add gpgme option
Add gpgme as an optional dependency to mutt. Compiling mutt using
"--with-gpgme" will build mutt with gpgme support for accessing GnuPG.
Closes #25438.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/mutt.rb | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/mutt.rb b/Library/Formula/mutt.rb index 318e5bcd7..8f7cc61c0 100644 --- a/Library/Formula/mutt.rb +++ b/Library/Formula/mutt.rb @@ -34,6 +34,7 @@ class Mutt < Formula    depends_on 'tokyo-cabinet'    depends_on 's-lang' => :optional +  depends_on 'gpgme' => :optional    def patches      urls = [ @@ -71,6 +72,7 @@ class Mutt < Formula              # unpriviledged user)              "--with-homespool=.mbox"]      args << "--with-slang" if build.with? 's-lang' +    args << "--enable-gpgme" if build.with? 'gpgme'      if build.with? 'debug'        args << "--enable-debug"  | 
