blob: 853810e93f3b1f80208b60e63f1b4dc43fdabb3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Msmtp < Formula
homepage 'http://msmtp.sourceforge.net'
url 'http://downloads.sourceforge.net/project/msmtp/msmtp/1.4.28/msmtp-1.4.28.tar.bz2'
md5 '14740478dc9d1f52ec97a415e3373fc7'
depends_on 'pkg-config' => :build
def options
[['--with-macosx-keyring', "Support Mac OS X Keyring"]]
end
def install
args = [ "--disable-dependency-tracking", "--prefix=#{prefix}" ]
args << "--with-macosx-keyring" if ARGV.include? '--with-macosx-keyring'
system "./configure", *args
system "make install"
end
end
|