aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/msmtp.rb
diff options
context:
space:
mode:
authorPeter Aronoff2011-01-09 19:55:30 -0500
committerMike McQuaid2011-01-16 14:53:57 +0000
commit77ffd4a80544591b6671cebb0f0e9432ffffe5cd (patch)
tree910351fe118f1d84266bacec66e632147d303eff /Library/Formula/msmtp.rb
parentac3036cf7bd6bc96440e77ebe8b4b605757222f5 (diff)
downloadhomebrew-77ffd4a80544591b6671cebb0f0e9432ffffe5cd.tar.bz2
Update msmtp formula
Bump msmtp to 1.4.22. Also remove --disable-debug from config options, since the configuration script doesn't even recognize that option. Closes #3850. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/msmtp.rb')
-rw-r--r--Library/Formula/msmtp.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/msmtp.rb b/Library/Formula/msmtp.rb
index c0fd91d50..f846750ff 100644
--- a/Library/Formula/msmtp.rb
+++ b/Library/Formula/msmtp.rb
@@ -1,17 +1,16 @@
require 'formula'
class Msmtp <Formula
- url 'http://downloads.sourceforge.net/project/msmtp/msmtp/1.4.20/msmtp-1.4.20.tar.bz2'
+ url 'http://downloads.sourceforge.net/project/msmtp/msmtp/1.4.22/msmtp-1.4.22.tar.bz2'
homepage 'http://msmtp.sourceforge.net'
- md5 '065042eaaee40c2779cf0bcfffe72aae'
+ md5 'de0a4e6f3133519b301fc114daf81f49'
def options
[['--with-macosx-keyring', "Support Mac OS X Keyring"]]
end
def install
- args = [ "--disable-dependency-tracking", "--disable-debug",
- "--prefix=#{prefix}" ]
+ args = [ "--disable-dependency-tracking", "--prefix=#{prefix}" ]
args << "--with-macosx-keyring" if ARGV.include? '--with-macosx-keyring'
system "./configure", *args