blob: 988b607cc61af959759ff4222246f6b523babbe8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 | require 'formula'
class Autojump < Formula
  homepage 'https://github.com/joelthelion/autojump/wiki'
  url 'https://github.com/downloads/joelthelion/autojump/autojump_v20.tar.gz'
  md5 '5297817c33959cb5afc070f5d174b24f'
  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
 |