2eadab0af5
Closes Homebrew/homebrew#16990. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
26 lines
849 B
Ruby
26 lines
849 B
Ruby
require 'formula'
|
|
|
|
class Autojump < Formula
|
|
homepage 'https://github.com/joelthelion/autojump#name'
|
|
url 'https://github.com/joelthelion/autojump/archive/release-v21.3.0.tar.gz'
|
|
sha1 'fb9db92fca7c760c94e27f200dc0b2e1773ca150'
|
|
|
|
head 'https://github.com/joelthelion/autojump.git'
|
|
|
|
def install
|
|
inreplace 'bin/autojump.sh', ' /etc/profile.d/', " #{prefix}/etc/"
|
|
|
|
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 line to your ~/.bash_profile or ~/.zshrc file (and remember
|
|
to source the file to update your current session):
|
|
|
|
[[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh
|
|
EOS
|
|
end
|
|
end
|