d87721760f
Update to tin 2.2.0. Also changed to use stable url. Closes Homebrew/homebrew#25854. Signed-off-by: Gaurav Jain <gaurav@gauravjain.org> Closes Homebrew/homebrew#25854. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
18 lines
518 B
Ruby
18 lines
518 B
Ruby
require 'formula'
|
|
|
|
class Tin < Formula
|
|
homepage 'http://www.tin.org'
|
|
url 'ftp://ftp.tin.org/pub/news/clients/tin/v2.2/tin-2.2.0.tar.gz'
|
|
sha1 '91293a529ae454f0506fc756325b4cfb9c5c235d'
|
|
|
|
conflicts_with 'mutt',
|
|
:because => 'both install mmdf.5 and mbox.5 man pages'
|
|
|
|
def install
|
|
ENV.enable_warnings
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make build"
|
|
system "make install"
|
|
end
|
|
end
|