homebrew-core/Formula/pyenv.rb
2016-08-18 15:30:40 +01:00

36 lines
1.1 KiB
Ruby

class Pyenv < Formula
desc "Python version management"
homepage "https://github.com/yyuu/pyenv"
url "https://github.com/yyuu/pyenv/archive/v1.0.0.tar.gz"
sha256 "93216b9998cd1a3a09b8cc205a17de9a27b06788660749d36192c6a5ca346b4a"
version_scheme 1
head "https://github.com/yyuu/pyenv.git"
bottle :unneeded
depends_on "autoconf" => [:recommended, :run]
depends_on "pkg-config" => [:recommended, :run]
depends_on "openssl" => :recommended
depends_on "readline" => [:recommended, :run]
def install
inreplace "libexec/pyenv", "/usr/local", HOMEBREW_PREFIX
prefix.install Dir["*"]
%w[pyenv-install pyenv-uninstall python-build].each do |cmd|
bin.install_symlink "#{prefix}/plugins/python-build/bin/#{cmd}"
end
end
def caveats; <<-EOS.undent
To use Homebrew's directories rather than ~/.pyenv add to your profile:
export PYENV_ROOT=#{var}/pyenv
To enable shims and autocompletion add to your profile:
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
EOS
end
test do
shell_output("eval \"$(#{bin}/pyenv init -)\" && pyenv versions")
end
end