homebrew-core/Formula/mairix.rb
Alexis Hildebrandt f5523dc38f Update Formula: mairix to 0.22
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

Fixes Homebrew/homebrew#3036
2010-11-02 18:45:28 -07:00

14 lines
404 B
Ruby

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