blob: f386111e21a12f25338b72666560a37802e26495 (
plain)
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
  | 
require 'formula'
class Jruby < Formula
  homepage 'http://www.jruby.org'
  url 'http://jruby.org.s3.amazonaws.com/downloads/1.7.3/jruby-bin-1.7.3.tar.gz'
  sha1 '2c0b9c484f46d570d1bbc061132d0020ba9e8cbb'
  def install
    # Remove Windows files
    rm Dir['bin/*.{bat,dll,exe}']
    # Prefix a 'j' on some commands
    cd 'bin' do
      Dir['*'].each do |file|
        mv file, "j#{file}" unless file.match /^[j]/
      end
    end
    # Only keep the OS X native libraries
    cd 'lib/native' do
      Dir['*'].each do |file|
        rm_rf file unless file.downcase == 'darwin'
      end
    end
    libexec.install Dir['*']
    bin.install_symlink Dir["#{libexec}/bin/*"]
  end
  def test
    system "#{bin}/jruby", "-e", "puts 'hello'"
  end
end
  |