homebrew-core/Formula/autojump.rb
2015-03-19 12:45:15 +00:00

40 lines
1.3 KiB
Ruby

class Autojump < Formula
homepage "https://github.com/joelthelion/autojump"
url "https://github.com/joelthelion/autojump/archive/release-v22.2.4.tar.gz"
sha256 "816badb0721f735e2b86bdfa8b333112f3867343c7c2263c569f75b4ec91f475"
head "https://github.com/joelthelion/autojump.git"
def install
system "./install.py", "-d", prefix, "-z", zsh_completion
# Backwards compatibility for users that have the old path in .bash_profile
# or .zshrc
(prefix/"etc").install_symlink prefix/"etc/profile.d/autojump.sh"
libexec.install bin
bin.write_exec_script libexec/"bin/autojump"
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/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh
If you use the Fish shell then add the following line to your ~/.config/fish/config.fish:
[ -f #{HOMEBREW_PREFIX}/share/autojump/autojump.fish ]; and . #{HOMEBREW_PREFIX}/share/autojump/autojump.fish
EOS
end
test do
path = testpath/"foo"
path.mkdir
output = %x(
source #{HOMEBREW_PREFIX}/etc/profile.d/autojump.sh
j -a foo
j foo >/dev/null
pwd
).strip
assert_equal path.to_s, output
end
end