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

class Mairix <Formula
  homepage 'http://www.rpcurnow.force9.co.uk/mairix/'
  url 'http://downloads.sourceforge.net/project/mairix/mairix/0.21/mairix-0.21.tar.gz'
  md5 '821619895931711c370f51f3442a0ded'

  def install
    ENV.j1
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make"
    system "make install"
  end
end