9918aa469b
Install python modules and original autojump script into autojump's own libexec dir and write an exec script for them. This way `autojump` is the only thing that ends up on in `/usr/local/bin`. Closes Homebrew/homebrew#25729. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
require 'formula'
|
|
|
|
class Autojump < Formula
|
|
homepage 'https://github.com/joelthelion/autojump#name'
|
|
url 'https://github.com/joelthelion/autojump/archive/release-v21.6.9.tar.gz'
|
|
sha1 '9d13e56ec1abf76e0e955d754e8a62616bb102a7'
|
|
|
|
head 'https://github.com/joelthelion/autojump.git'
|
|
|
|
def install
|
|
inreplace 'bin/autojump.sh', ' /etc/profile.d/', " #{prefix}/etc/"
|
|
|
|
libexec.install 'bin/autojump'
|
|
libexec.install 'bin/autojump_argparse.py', 'bin/autojump_data.py', 'bin/autojump_utils.py' if build.head?
|
|
man1.install 'docs/autojump.1'
|
|
(prefix/'etc').install 'bin/autojump.sh', 'bin/autojump.bash', 'bin/autojump.zsh'
|
|
zsh_completion.install 'bin/_j'
|
|
(prefix/'etc').install 'bin/autojump.fish' if build.head?
|
|
|
|
bin.write_exec_script libexec+'autojump'
|
|
end
|
|
|
|
def caveats;
|
|
msg = <<-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
|
|
|
|
if build.head?
|
|
msg += <<-EOS.undent
|
|
|
|
Add the following line to your ~/.config/fish/config.fish:
|
|
. /usr/local/Cellar/autojump/HEAD/etc/autojump.fish
|
|
EOS
|
|
end
|
|
|
|
msg
|
|
end
|
|
end
|