aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorPeter Aronoff2012-04-25 14:39:49 -0400
committerJack Nagel2012-04-25 21:53:02 -0500
commit70534600df47bd97ecf3530808ae31382167cfc2 (patch)
tree71d74b00764c3147ae58f89c884248a9fdacdbf5 /Library
parent1fa9cc57f4992b125b01a1b117e1a9b1ade7c03f (diff)
downloadhomebrew-70534600df47bd97ecf3530808ae31382167cfc2.tar.bz2
mu 0.9.8.3
- add caveat about rebuilding index Closes #11877. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mu.rb11
1 files changed, 9 insertions, 2 deletions
diff --git a/Library/Formula/mu.rb b/Library/Formula/mu.rb
index df45cd61e..db1ffb118 100644
--- a/Library/Formula/mu.rb
+++ b/Library/Formula/mu.rb
@@ -1,8 +1,8 @@
require 'formula'
class Mu < Formula
- url 'http://mu0.googlecode.com/files/mu-0.9.7.tar.gz'
- sha1 '8641d579a770d59124b72433712841736d326ca6'
+ 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'
@@ -17,4 +17,11 @@ class Mu < Formula
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