homebrew-core/Formula/antigen.rb
ilovezfs bda3e7290f antigen 1.2.2
Closes #7070.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2016-11-19 14:56:30 +01:00

26 lines
727 B
Ruby

class Antigen < Formula
desc "Plugin manager for zsh, inspired by oh-my-zsh and vundle."
homepage "http://antigen.sharats.me/"
url "https://github.com/zsh-users/antigen/archive/v1.2.2.tar.gz"
sha256 "cb48bcf575037581ea4490cfe658f8166894cea39c1094662afceb80d0028d93"
head "https://github.com/zsh-users/antigen.git"
bottle :unneeded
def install
pkgshare.install "bin/antigen.zsh"
end
def caveats; <<-EOS.undent
To activate antigen, add the following to your ~/.zshrc:
source $(brew --prefix)/share/antigen/antigen.zsh
EOS
end
test do
(testpath/".zshrc").write "source `brew --prefix`/share/antigen/antigen.zsh\n"
system "zsh", "--login", "-i", "-c", "antigen help"
end
end