homebrew-core/Formula/jruby.rb
ywjno 121e822a8e jruby 1.7.18
update jruby version to 1.7.18

Closes Homebrew/homebrew#35753.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-11 22:12:52 +00:00

29 lines
829 B
Ruby

require "formula"
class Jruby < Formula
homepage "http://www.jruby.org"
url "https://s3.amazonaws.com/jruby.org/downloads/1.7.18/jruby-bin-1.7.18.tar.gz"
sha1 "87a4d5fbf10d88ef8de12f3ebececf9ffc1abaee"
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 OS X native libraries
rm_rf Dir["lib/jni/*"] - ["lib/jni/Darwin"]
libexec.install Dir['*']
bin.install_symlink Dir["#{libexec}/bin/*"]
end
test do
system "#{bin}/jruby", "-e", "puts 'hello'"
end
end