2009-11-30 03:36:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Msmtp < Formula
|
2009-11-30 03:36:38 +00:00
|
|
|
homepage 'http://msmtp.sourceforge.net'
|
2014-03-16 00:08:00 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/msmtp/msmtp/1.4.32/msmtp-1.4.32.tar.bz2'
|
|
|
|
sha1 '03186a70035dbbf7a31272a20676b96936599704'
|
2009-11-30 03:36:38 +00:00
|
|
|
|
2012-09-03 20:51:13 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2014-04-14 23:23:42 +00:00
|
|
|
depends_on 'openssl'
|
2013-06-24 18:05:46 +00:00
|
|
|
|
2009-11-30 03:36:38 +00:00
|
|
|
def install
|
2012-09-03 20:51:13 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
2014-04-14 23:22:36 +00:00
|
|
|
--with-macosx-keyring
|
2012-09-03 20:51:13 +00:00
|
|
|
--prefix=#{prefix}
|
2013-06-24 20:00:19 +00:00
|
|
|
--with-ssl=openssl
|
2012-09-03 20:51:13 +00:00
|
|
|
]
|
2010-01-28 22:14:05 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", *args
|
2013-06-24 18:05:46 +00:00
|
|
|
system "make", "install"
|
2009-11-30 03:36:38 +00:00
|
|
|
end
|
|
|
|
end
|