homebrew-core/Formula/msmtp.rb
Dominyk Tiller a2bafa27f8 openssl: disable SSLv2 support.
Kills ssl2 from OpenSSL. This PR relates to Homebrew/homebrew#31745. Force recompiles
everything that relies on OpenSSL from the master branch to enforce the
new OpenSSL no-ssl2 rule.
2014-08-24 17:13:48 +01:00

23 lines
518 B
Ruby

require 'formula'
class Msmtp < Formula
homepage 'http://msmtp.sourceforge.net'
url 'https://downloads.sourceforge.net/project/msmtp/msmtp/1.4.32/msmtp-1.4.32.tar.bz2'
sha1 '03186a70035dbbf7a31272a20676b96936599704'
revision 1
depends_on 'pkg-config' => :build
depends_on 'openssl'
def install
args = %W[
--disable-dependency-tracking
--with-macosx-keyring
--prefix=#{prefix}
--with-ssl=openssl
]
system "./configure", *args
system "make", "install"
end
end