aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorWilliam Ting2012-11-01 04:41:44 -0500
committerAdam Vandenberg2012-11-01 13:51:12 -0700
commit5da9c4d5eb38e6abb516ba648898fb374ec360cd (patch)
tree678fb7caf0962c9cf95dd34e3828a54f24b5648f /Library/Formula
parent1ca93beebb68d98cee0d9acda71f606f9fbfa42d (diff)
downloadhomebrew-5da9c4d5eb38e6abb516ba648898fb374ec360cd.tar.bz2
autojump 21.0.3
Update files to reflect new source locations. Existing users upgrading must note the new autojump.sh location and modify ~/.bash_profile or ~/.zshrc appropriately as mentioned in the caveat message. Fixes #15797. Closes #15793. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/autojump.rb28
1 files changed, 14 insertions, 14 deletions
diff --git a/Library/Formula/autojump.rb b/Library/Formula/autojump.rb
index d5d7d94ba..33321b95c 100644
--- a/Library/Formula/autojump.rb
+++ b/Library/Formula/autojump.rb
@@ -1,28 +1,28 @@
require 'formula'
class Autojump < Formula
- homepage 'https://github.com/joelthelion/autojump/wiki'
- url 'https://github.com/downloads/joelthelion/autojump/autojump_v20.tar.gz'
- sha1 '7de157feb90dc22d5959914fa531844c68d5ba7b'
+ homepage 'https://github.com/joelthelion/autojump#name'
+ url 'https://github.com/downloads/joelthelion/autojump/autojump_v21.0.3.tar.gz'
+ sha1 'b81308d6ff50680cb74795195e93427557a938ad'
head 'https://github.com/joelthelion/autojump.git'
def install
- inreplace 'autojump.sh', '/etc/profile.d/', "#{prefix}/etc/"
+ inreplace 'bin/autojump.sh', ' /etc/profile.d/', " #{prefix}/etc/"
- bin.install 'autojump'
- man1.install 'autojump.1'
- (prefix+'etc').install 'autojump.sh' => 'autojump'
- (prefix+'etc').install 'autojump.bash', 'autojump.zsh'
- (share+'zsh/site-functions').install '_j'
+ bin.install 'bin/autojump'
+ man1.install 'docs/autojump.1'
+ (prefix+'etc').install 'bin/autojump.sh', 'bin/autojump.bash', 'bin/autojump.zsh'
+ (share+'zsh/site-functions').install 'bin/_j'
end
def caveats; <<-EOS.undent
- Add the following lines to your ~/.bash_profile or ~/.zshrc file (and
- remember to source the file to update your current session):
- if [ -f `brew --prefix`/etc/autojump ]; then
- . `brew --prefix`/etc/autojump
- fi
+
+ Add the following line to your ~/.bash_profile or ~/.zshrc file (and remember
+ to source the file to update your current session):
+
+ [[ -f `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh
+
EOS
end
end