35 lines
1 KiB
Ruby
35 lines
1 KiB
Ruby
class RubyBuild < Formula
|
|
desc "Install various Ruby versions and implementations"
|
|
homepage "https://github.com/rbenv/ruby-build"
|
|
url "https://github.com/rbenv/ruby-build/archive/v20200115.tar.gz"
|
|
sha256 "e680eb8a606be358740fb0dfcf08309081fa27a54224e00fc7673ed2c842032d"
|
|
head "https://github.com/rbenv/ruby-build.git"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "autoconf"
|
|
depends_on "pkg-config"
|
|
depends_on "readline"
|
|
|
|
def install
|
|
ENV["PREFIX"] = prefix
|
|
system "./install.sh"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
ruby-build installs a non-Homebrew OpenSSL for each Ruby version installed and these are never upgraded.
|
|
|
|
To link Rubies to Homebrew's OpenSSL 1.1 (which is upgraded) add the following
|
|
to your #{shell_profile}:
|
|
export RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix openssl@1.1)"
|
|
|
|
Note: this may interfere with building old versions of Ruby (e.g <2.4) that use
|
|
OpenSSL <1.1.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "2.0.0", shell_output("#{bin}/ruby-build --definitions")
|
|
end
|
|
end
|