diff options
| author | Justin Weiss | 2009-11-29 19:36:38 -0800 |
|---|---|---|
| committer | Max Howell | 2009-12-05 16:35:36 +0000 |
| commit | 5a7a33cc14c8207a4f4908d0fed80949f520001d (patch) | |
| tree | 510cc7db70d7719767bb4e04b7deeef9a75d85fa /Library | |
| parent | eaf5888ff56f3975ff640c6637cfb3e643dfea13 (diff) | |
| download | homebrew-5a7a33cc14c8207a4f4908d0fed80949f520001d.tar.bz2 | |
msmtp formula.
An SMTP client with a sendmail compatible interface.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/msmtp.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/msmtp.rb b/Library/Formula/msmtp.rb new file mode 100644 index 000000000..40c4fb61d --- /dev/null +++ b/Library/Formula/msmtp.rb @@ -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 |
