homebrew-core/Formula/pyenv.rb
Yamashita Yuu ddb3297745 pyenv 0.4.0-20140602
Changes:

* python-build: Add new Anaconda/Anaconda3 releases; anaconda-2.0.0, anaconda3-2.0.0
* python-build: Add new CPython release; 2.7.7
* python-build: Update default setuptools version (3.6 -> 4.0)
* python-build: Respect environment variables of `CPPFLAGS` and `LDFLAGS`
* python-build: Support for xz-compressed Python tarballs

Closes Homebrew/homebrew#29768.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-06-02 12:34:10 +01:00

39 lines
1.3 KiB
Ruby

require "formula"
class Pyenv < Formula
homepage "https://github.com/yyuu/pyenv"
head "https://github.com/yyuu/pyenv.git"
url "https://github.com/yyuu/pyenv/archive/v0.4.0-20140602.tar.gz"
sha1 "615c425a70c1979908c9a6be81f8b68ec57b7ea0"
depends_on "autoconf" => [:recommended, :run]
depends_on "pkg-config" => [:recommended, :run]
def install
inreplace "libexec/pyenv", "/usr/local", HOMEBREW_PREFIX
prefix.install "bin", "completions", "libexec"
prefix.install "plugins" => "default-plugins"
var_lib = "#{HOMEBREW_PREFIX}/var/lib/pyenv"
%w[plugins versions].each do |dir|
var_dir = "#{var_lib}/#{dir}"
mkdir_p var_dir
ln_sf var_dir, "#{prefix}/#{dir}"
end
rm_f "#{var_lib}/plugins/python-build"
ln_sf "#{prefix}/default-plugins/python-build", "#{var_lib}/plugins/python-build"
%w[pyenv-install pyenv-uninstall python-build].each do |cmd|
bin.install_symlink "#{prefix}/default-plugins/python-build/bin/#{cmd}"
end
end
def caveats; <<-EOS.undent
To enable shims and autocompletion add to your profile:
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
To use Homebrew's directories rather than ~/.pyenv add to your profile:
export PYENV_ROOT=#{opt_prefix}
EOS
end
end