aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mailcheck.rb
blob: 13837d972e346d379276a7a2377f0e402f3ed7d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Mailcheck < Formula
  url 'http://downloads.sourceforge.net/project/mailcheck/mailcheck/1.91.2/mailcheck_1.91.2.tar.gz'
  homepage 'http://mailcheck.sourceforge.net/'
  md5 'd2a3a22a65b1006d213d8cb3f4738070'

  def install
    system "make mailcheck"
    bin.install 'mailcheck'
    man1.install 'mailcheck.1'
    etc.install 'mailcheckrc'
  end
end