2012-01-11 04:05:04 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Autojump < Formula
|
2012-11-01 09:41:44 +00:00
|
|
|
homepage 'https://github.com/joelthelion/autojump#name'
|
2013-05-22 17:22:34 +00:00
|
|
|
url 'https://github.com/joelthelion/autojump/archive/release-v21.6.8.tar.gz'
|
2013-05-25 16:00:02 +00:00
|
|
|
sha1 '861d41b63f0d6a93b7056424bb2a0e0efc74e70b'
|
2012-01-11 04:05:04 +00:00
|
|
|
|
|
|
|
head 'https://github.com/joelthelion/autojump.git'
|
|
|
|
|
|
|
|
def install
|
2012-11-01 09:41:44 +00:00
|
|
|
inreplace 'bin/autojump.sh', ' /etc/profile.d/', " #{prefix}/etc/"
|
2012-01-11 04:05:04 +00:00
|
|
|
|
2012-11-01 09:41:44 +00:00
|
|
|
bin.install 'bin/autojump'
|
|
|
|
man1.install 'docs/autojump.1'
|
|
|
|
(prefix+'etc').install 'bin/autojump.sh', 'bin/autojump.bash', 'bin/autojump.zsh'
|
2013-05-03 18:09:00 +00:00
|
|
|
zsh_completion.install 'bin/_j'
|
2012-01-11 04:05:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2012-11-01 09:41:44 +00:00
|
|
|
Add the following line to your ~/.bash_profile or ~/.zshrc file (and remember
|
|
|
|
to source the file to update your current session):
|
|
|
|
|
2012-11-22 18:10:52 +00:00
|
|
|
[[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh
|
2012-01-11 04:05:04 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|