0a5f44fbde
Closes Homebrew/homebrew#42090. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
25 lines
705 B
Ruby
25 lines
705 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/v20150719.tar.gz"
|
|
sha256 "84f9aae3656b4fae0e2f6ec38aad3e5e2c0fc0a44b23c54af3c6ee947ad01c37"
|
|
|
|
head "https://github.com/yyuu/pyenv-virtualenv.git"
|
|
|
|
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
|