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'
|
2012-11-16 22:15:45 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/msmtp/msmtp/1.4.30/msmtp-1.4.30.tar.bz2'
|
|
|
|
sha1 'fd469bae0c3394b30b771780e62bbd41c4d5d175'
|
2009-11-30 03:36:38 +00:00
|
|
|
|
2012-09-03 20:51:13 +00:00
|
|
|
option 'with-macosx-keyring', "Support Mac OS X Keyring"
|
2012-02-18 12:01:26 +00:00
|
|
|
|
2012-09-03 20:51:13 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-01-28 22:14:05 +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
|
|
|
|
--prefix=#{prefix}
|
|
|
|
]
|
|
|
|
args << "--with-macosx-keyring" if build.include? 'with-macosx-keyring'
|
2010-01-28 22:14:05 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", *args
|
2009-11-30 03:36:38 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|