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

class Mairix < Formula
  homepage 'http://www.rpcurnow.force9.co.uk/mairix/'
  url 'https://downloads.sourceforge.net/project/mairix/mairix/0.23/mairix-0.23.tar.gz'
  sha1 '1621d60db5fb76453e48b98d12ca86b4a68ea1de'

  head 'https://github.com/rc0/mairix.git'

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