diff --git a/sysutils/autojump/Portfile b/sysutils/autojump/Portfile
index 467fa86..727c637 100644
a
|
b
|
|
4 | 4 | PortSystem 1.0 |
5 | 5 | PortGroup github 1.0 |
6 | 6 | |
7 | | github.setup joelthelion autojump 21.5.1 "release-v" |
| 7 | github.setup joelthelion autojump 21.5.8 "release-v" |
8 | 8 | categories sysutils |
9 | 9 | platforms darwin |
10 | 10 | maintainers gmail.com:johnny.kuan |
… |
… |
description a cd command that learns |
15 | 15 | |
16 | 16 | long_description ${name} is ${description}. |
17 | 17 | |
18 | | checksums rmd160 262d5ae1c16f0f3b81894b2ea0811abd8b05edbb \ |
19 | | sha256 53f3f71c3217f26945c264cdf9b7d3e5cdeb0b62bef8ded367240d375d6d83c4 |
| 18 | checksums rmd160 aec113b3663da4c420ceb3efaa54394f80dcbb03 \ |
| 19 | sha256 e70973cd4624398f186da112459b30e2430f2144f6f0535d06d219e502d22bbe |
20 | 20 | |
21 | 21 | depends_run port:python27 |
22 | 22 | |
… |
… |
destroot { |
40 | 40 | |
41 | 41 | notes " |
42 | 42 | To use autojump for bash, add the following to the end of your .bash_profile: |
43 | | if \[ -f ${prefix}/etc/profile.d/autojump.sh \]; then |
44 | | . ${prefix}/etc/profile.d/autojump.sh |
| 43 | if \[ -f ${prefix}/etc/profile.d/autojump.bash \]; then |
| 44 | . ${prefix}/etc/profile.d/autojump.bash |
45 | 45 | fi |
46 | 46 | |
47 | 47 | To use autojump for zsh, add the following to the end of your .zshrc: |
48 | 48 | export FPATH=\"\$FPATH:${prefix}/share/zsh/site-functions/\" |
49 | | if \[ -f ${prefix}/etc/profile.d/autojump.sh \]; then |
50 | | . ${prefix}/etc/profile.d/autojump.sh |
| 49 | if \[ -f ${prefix}/etc/profile.d/autojump.zsh \]; then |
| 50 | . ${prefix}/etc/profile.d/autojump.zsh |
51 | 51 | fi |
52 | 52 | To use zsh tab completion, load compinit in your .zshrc: |
53 | 53 | autoload -U compinit; compinit |