0806d375aa
Msmtp will enable support for the OS X Keychain by default on Macs. No need to ask for it. Closes Homebrew/homebrew#20753. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
21 lines
507 B
Ruby
21 lines
507 B
Ruby
require 'formula'
|
|
|
|
class Msmtp < Formula
|
|
homepage 'http://msmtp.sourceforge.net'
|
|
url 'http://downloads.sourceforge.net/project/msmtp/msmtp/1.4.31/msmtp-1.4.31.tar.bz2'
|
|
sha1 'c0edce1e1951968853f15209c8509699ff9e9ab5'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
# msmtp enables OS X Keychain support by default, so no need to ask for it.
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
end
|