homebrew-core/Formula/ruby-build.rb

43 lines
1.4 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/v20221116.tar.gz"
sha256 "40fe132f4281d74b4d54f35c3b5dcc762ce65b781832f9f6c06a02cdef524356"
license "MIT"
head "https://github.com/rbenv/ruby-build.git", branch: "master"
bottle do
sha256 cellar: :any_skip_relocation, all: "ceda693ae2e01e3470e4028246ca73a9eada2575d2cd05387464d0f176194c9a"
end
depends_on "autoconf"
depends_on "pkg-config"
depends_on "readline"
def install
# these references are (as-of v20210420) only relevant on FreeBSD but they
# prevent having identical bottles between platforms so let's fix that.
inreplace "bin/ruby-build", "/usr/local", HOMEBREW_PREFIX
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