blob: ca502f30632e12ef203852eb6f112370ca1f6310 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  | 
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
  depends_on 'curl-ca-bundle' => :optional
  # msmtp enables OS X Keychain support by default, so no need to ask for it.
  def install
    # Msmtp will build against gnutls by default if it exists on the
    # system.  This sets up problems if the user later removes gnutls.
    # So explicitly ask for openssl, and ye shall receive it whether
    # or not gnutls is present.
    args = %W[
      --disable-dependency-tracking
      --prefix=#{prefix}
      --with-ssl=openssl
    ]
    system "./configure", *args
    system "make", "install"
  end
end
  |