homebrew-core/Formula/pyenv-virtualenv.rb
Yamashita, Yuu 7d0de912f3 pyenv-virtualenv 20160202
Closes Homebrew/homebrew#48734.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-02-02 18:34:00 +08:00

26 lines
724 B
Ruby

class PyenvVirtualenv < Formula
desc "Pyenv plugin to manage virtualenv"
homepage "https://github.com/yyuu/pyenv-virtualenv"
url "https://github.com/yyuu/pyenv-virtualenv/archive/v20160202.tar.gz"
sha256 "7a5c419949c9bedd8fb427c8bf2b8b88ed42536c25265f60078e4af666787de9"
head "https://github.com/yyuu/pyenv-virtualenv.git"
bottle :unneeded
depends_on "pyenv"
def install
ENV["PREFIX"] = prefix
system "./install.sh"
end
def caveats; <<-EOS.undent
To enable auto-activation add to your profile:
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi
EOS
end
test do
shell_output("eval \"$(pyenv init -)\" && pyenv virtualenvs")
end
end