31 lines
961 B
Ruby
31 lines
961 B
Ruby
class RubyInstall < Formula
|
|
desc "Install Ruby, JRuby, Rubinius, TruffleRuby, or mruby"
|
|
homepage "https://github.com/postmodern/ruby-install#readme"
|
|
url "https://github.com/postmodern/ruby-install/archive/v0.8.5.tar.gz"
|
|
sha256 "793fcf44dce375c6c191003c3bfd22ebc85fa296d751808ab315872f5ee0179b"
|
|
license "MIT"
|
|
head "https://github.com/postmodern/ruby-install.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "e0fe47d5a5ca9f84ffe59b40d48981341a0ab937342069d7f79c51dd4b95af0e"
|
|
end
|
|
|
|
depends_on "xz"
|
|
|
|
def install
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
|
|
# Ensure uniform bottles across prefixes
|
|
inreplace man1/"ruby-install.1", "/usr/local", "$HOMEBREW_PREFIX"
|
|
inreplace [
|
|
pkgshare/"ruby-install.sh",
|
|
pkgshare/"truffleruby/functions.sh",
|
|
pkgshare/"truffleruby-graalvm/functions.sh",
|
|
], "/usr/local", HOMEBREW_PREFIX
|
|
end
|
|
|
|
test do
|
|
system bin/"ruby-install"
|
|
end
|
|
end
|