2010-06-17 12:34:06 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tin < Formula
|
2010-06-17 12:34:06 +00:00
|
|
|
homepage 'http://www.tin.org'
|
2012-02-10 05:38:27 +00:00
|
|
|
url 'ftp://ftp.tin.org/pub/news/clients/tin/stable/tin-2.0.1.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '27d3003d90b8ee4be3a25377986f0f53955a6b5b'
|
2010-06-17 12:34:06 +00:00
|
|
|
|
2013-11-07 14:28:42 +00:00
|
|
|
conflicts_with 'mutt',
|
|
|
|
:because => 'both install mmdf.5 and mbox.5 man pages'
|
|
|
|
|
2010-06-17 12:34:06 +00:00
|
|
|
def install
|
|
|
|
ENV.enable_warnings
|
2013-11-07 14:28:42 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}", "--mandir=#{man}"
|
2010-06-17 12:34:06 +00:00
|
|
|
system "make build"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|