msmtp formula.

An SMTP client with a sendmail compatible interface.
This commit is contained in:
Justin Weiss 2009-11-29 19:36:38 -08:00 committed by Max Howell
parent 042a722cf1
commit 0004d67e9f

12
Formula/msmtp.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Msmtp <Formula
url 'http://downloads.sourceforge.net/project/msmtp/msmtp/1.4.19/msmtp-1.4.19.tar.bz2'
homepage 'http://msmtp.sourceforge.net'
md5 'f0afdc943bf7c8a3a3bf3fe1a73072c4'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end