homebrew-core/Formula/mu.rb
Peter Aronoff b8cbe9912d mu 0.9.8.3
- add caveat about rebuilding index

Closes Homebrew/homebrew#11877.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-25 21:53:02 -05:00

27 lines
643 B
Ruby

require 'formula'
class Mu < Formula
url 'http://mu0.googlecode.com/files/mu-0.9.8.3.tar.gz'
sha1 'e66396783b9424cb7bf740bc309bd1361f399d16'
homepage 'http://www.djcbsoftware.nl/code/mu/'
head 'git://gitorious.org/mu/old.git'
depends_on 'gettext'
depends_on 'glib'
depends_on 'gmime'
depends_on 'xapian'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking", "--with-gui=none"
system "make"
system "make install"
end
def caveats; <<-EOS.undent
Existing mu users are recommended to run the following after upgrading:
mu index --rebuild
EOS
end
end