aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tin.rb
blob: 8b38a4aa0dfd03c5781964d7da56877d6cc9f12e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Tin < Formula
  homepage 'http://www.tin.org'
  url 'ftp://ftp.tin.org/pub/news/clients/tin/stable/tin-2.0.1.tar.gz'
  sha1 '27d3003d90b8ee4be3a25377986f0f53955a6b5b'

  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