blob: ea120a54432ed5f1bbc0191c0c15a54891040542 (
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
|
require 'formula'
class Autojump < Formula
homepage 'https://github.com/joelthelion/autojump#name'
url 'https://github.com/joelthelion/autojump/archive/release-v21.4.2.tar.gz'
sha1 '6876838c570542a8af90b5850d5e17c8d656c50a'
head 'https://github.com/joelthelion/autojump.git'
def install
inreplace 'bin/autojump.sh', ' /etc/profile.d/', " #{prefix}/etc/"
bin.install 'bin/autojump'
man1.install 'docs/autojump.1'
(prefix+'etc').install 'bin/autojump.sh', 'bin/autojump.bash', 'bin/autojump.zsh'
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/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh
EOS
end
end
|