40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
class Jruby < Formula
|
|
desc "Ruby implementation in pure Java"
|
|
homepage "https://www.jruby.org/"
|
|
url "https://search.maven.org/remotecontent?filepath=org/jruby/jruby-dist/9.2.15.0/jruby-dist-9.2.15.0-bin.tar.gz"
|
|
sha256 "9e8e5d73c42d1dad8a795a6dc39bd87e88fc8863f76e065e4099c32d085205b0"
|
|
license any_of: ["EPL-2.0", "GPL-2.0-only", "LGPL-2.1-only"]
|
|
|
|
livecheck do
|
|
url "https://www.jruby.org/download"
|
|
regex(%r{href=.*?/jruby-dist[._-]v?(\d+(?:\.\d+)+)-bin\.t}i)
|
|
end
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
# Remove Windows files
|
|
rm Dir["bin/*.{bat,dll,exe}"]
|
|
|
|
cd "bin" do
|
|
# Prefix a 'j' on some commands to avoid clashing with other rubies
|
|
%w[ast rake rdoc ri testrb].each { |f| mv f, "j#{f}" }
|
|
# Delete some unnecessary commands
|
|
rm "gem" # gem is a wrapper script for jgem
|
|
rm "irb" # irb is an identical copy of jirb
|
|
end
|
|
|
|
# Only keep the macOS native libraries
|
|
rm_rf Dir["lib/jni/*"] - ["lib/jni/Darwin"]
|
|
libexec.install Dir["*"]
|
|
bin.install Dir["#{libexec}/bin/*"]
|
|
bin.env_script_all_files libexec/"bin", Language::Java.overridable_java_home_env
|
|
end
|
|
|
|
test do
|
|
assert_equal "hello\n", shell_output("#{bin}/jruby -e \"puts 'hello'\"")
|
|
end
|
|
end
|