homebrew-core/Formula/zsh-completions.rb
ilovezfs 32138fdd24 zsh-completions 0.19.0
Closes #3114.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
2016-07-19 01:53:08 -07:00

40 lines
1.1 KiB
Ruby

class ZshCompletions < Formula
desc "Additional completion definitions for zsh"
homepage "https://github.com/zsh-users/zsh-completions"
url "https://github.com/zsh-users/zsh-completions/archive/0.19.0.tar.gz"
sha256 "8108692b9f9bfb630b9b96a8ff57e87a9437fd183599972f6b0a60f8552c89e0"
head "https://github.com/zsh-users/zsh-completions.git"
bottle :unneeded
def install
pkgshare.install Dir["src/_*"]
end
def caveats
<<-EOS.undent
To activate these completions, add the following to your .zshrc:
fpath=(#{HOMEBREW_PREFIX}/share/zsh-completions $fpath)
You may also need to force rebuild `zcompdump`:
rm -f ~/.zcompdump; compinit
Additionally, if you receive "zsh compinit: insecure directories" warnings when attempting
to load these completions, you may need to run this:
chmod go-w '#{HOMEBREW_PREFIX}/share'
EOS
end
test do
(testpath/".zshrc").write <<-EOS.undent
fpath=(#{HOMEBREW_PREFIX}/share/zsh-completions $fpath)
autoload -U compinit
compinit
EOS
system "/bin/zsh", "--login", "-i", "-c", "which _ack"
end
end