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/v20221004.tar.gz"
sha256 "da6cefa3f15c44683c749cd8612910768a30eefbfb8213ff3420abe0d3478704"
license "MIT"
head "https://github.com/rbenv/ruby-build.git", branch: "master"
bottle do
sha256 cellar: :any_skip_relocation, all: "3f52f1bb23c8425554e872fd89f79cee50ae640b08583bf0252f452d138c798f"
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