homebrew-core/Formula/antigen.rb
Artem M 3095f5e677 antigen 1.3.2
Closes #8314.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2016-12-30 13:42:35 +01:00

24 lines
747 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/releases/download/v1.3.2/v1.3.2.tar.gz"
sha256 "30cd3f5b5049a968edb8aabb36a84ecbab34e9fb7f89be1d698370c3c1655f4c"
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 #{HOMEBREW_PREFIX}/share/antigen/antigen.zsh
EOS
end
test do
(testpath/".zshrc").write "source #{HOMEBREW_PREFIX}/share/antigen/antigen.zsh\n"
system "zsh", "--login", "-i", "-c", "antigen help"
end
end