43 lines
1.4 KiB
Ruby
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/v20221225.tar.gz"
|
|
sha256 "61cb58b3adfc63f935dbad6be0c5206833ef5959d50d65bfe555656f53fb2b73"
|
|
license "MIT"
|
|
head "https://github.com/rbenv/ruby-build.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "35a13c5d0c1441a2163ecb150dbd5fae49843d50ec242afb77202c2fe3c52d50"
|
|
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
|