homebrew-core/Formula/antigen.rb
ilovezfs 6706854713 antigen 1.0.4 (#4272)
* antigen 1.0.4

* Update antigen.rb
2016-08-27 12:26:35 -07:00

26 lines
723 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.0.4.tar.gz"
sha256 "ab83436644bbcaf028b7cff60a6fcc8ba4904b3f6f376557848e07df4afe1555"
head "https://github.com/zsh-users/antigen.git"
bottle :unneeded
def install
pkgshare.install "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