0e7a50fe8d
Closes Homebrew/homebrew#16894. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
31 lines
898 B
Ruby
31 lines
898 B
Ruby
require 'formula'
|
|
|
|
class Rbenv < Formula
|
|
homepage 'https://github.com/sstephenson/rbenv'
|
|
url 'https://github.com/sstephenson/rbenv/tarball/v0.4.0'
|
|
sha1 'a5e80249f985294c1c9f0914f7cbdc85d4cadd74'
|
|
|
|
head 'https://github.com/sstephenson/rbenv.git'
|
|
|
|
# TODO: When we bump the version here we can remove making the plugin
|
|
# directory in depending formulae.
|
|
def install
|
|
prefix.install Dir['*']
|
|
|
|
var_lib = "#{HOMEBREW_PREFIX}/var/lib/rbenv/"
|
|
['plugins', 'versions'].each do |dir|
|
|
var_dir = "#{var_lib}/#{dir}"
|
|
mkdir_p var_dir
|
|
ln_sf var_dir, "#{prefix}/#{dir}"
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To enable shims and autocompletion add to your profile:
|
|
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
|
|
|
|
To use Homebrew's directories rather than ~/.rbenv add to your profile:
|
|
export RBENV_ROOT=#{opt_prefix}
|
|
EOS
|
|
end
|
|
end
|