forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjruby9000.rb
34 lines (28 loc) · 1.13 KB
/
jruby9000.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
class Jruby9000 < Formula
desc "Ruby implementation in pure Java"
homepage "http://www.jruby.org"
url "https://s3.amazonaws.com/jruby.org/downloads/9.0.0.0/jruby-bin-9.0.0.0.tar.gz"
sha256 "655665db3a1dc0462cba99d45532ab57d8416b5f168d8a0081bde9b7a93a394e"
depends_on :java => "1.7+"
conflicts_with "jruby", :because => "Differing version of the same formula"
conflicts_with "jruby168", :because => "Differing version of the same formula"
conflicts_with "jruby1721", :because => "Differing version of the same formula"
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