homebrew-core/Formula/mairix.rb
Stephen Eglen f038db2d7b mairix 0.23
Closes Homebrew/homebrew#7931.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-10-02 15:16:27 -05:00

14 lines
370 B
Ruby

require 'formula'
class Mairix < Formula
homepage 'http://www.rpcurnow.force9.co.uk/mairix/'
url 'http://downloads.sourceforge.net/project/mairix/mairix/0.23/mairix-0.23.tar.gz'
md5 '732cf94e05c779ff1ce4a9e9eb19ab44'
def install
ENV.j1
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make"
system "make install"
end
end