homebrew-core/Formula/mairix.rb

17 lines
423 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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'
sha1 '1621d60db5fb76453e48b98d12ca86b4a68ea1de'
head 'https://github.com/rc0/mairix.git'
def install
ENV.j1
2010-01-14 23:00:03 +00:00
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make"
system "make install"
end
end