88779ade49
Closes Homebrew/homebrew#14653.
28 lines
868 B
Ruby
28 lines
868 B
Ruby
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'
|
|
|
|
head 'https://github.com/joelthelion/autojump.git'
|
|
|
|
def install
|
|
inreplace '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'
|
|
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
|
|
EOS
|
|
end
|
|
end
|