2010-09-27 12:32:36 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Autojump <Formula
|
2010-11-07 19:30:15 +00:00
|
|
|
url 'https://github.com/downloads/joelthelion/autojump/autojump_v13.tar.gz'
|
2010-11-10 18:16:28 +00:00
|
|
|
homepage 'https://github.com/joelthelion/autojump/wiki'
|
2010-11-07 19:30:15 +00:00
|
|
|
md5 '13e4e6173f4ed63b8babb00fcd95f600'
|
|
|
|
version '13'
|
2010-09-27 12:32:36 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "autojump"
|
|
|
|
man1.install "autojump.1"
|
2010-11-07 19:30:15 +00:00
|
|
|
|
|
|
|
inreplace "autojump.sh", '/etc/profile.d/', (prefix+'etc/')
|
2010-09-27 12:32:36 +00:00
|
|
|
(prefix+'etc').install "autojump.sh" => "autojump"
|
2010-11-07 19:30:15 +00:00
|
|
|
(prefix+'etc').install ["autojump.bash", "autojump.zsh"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Add the following lines to your ~/.bash_profile file:
|
|
|
|
if [ -f `brew --prefix`/etc/autojump ]; then
|
|
|
|
. `brew --prefix`/etc/autojump
|
|
|
|
fi
|
|
|
|
EOS
|
2010-09-27 12:32:36 +00:00
|
|
|
end
|
|
|
|
end
|