blob: 58103e22578ff842a1d3bdc4ef86f60e1115d627 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'brewkit'
# My god! 20,000 files?!
# TODO trim that a bit? Seems crazy.
class Jruby <Formula
@url='http://dist.codehaus.org/jruby/1.3.1/jruby-src-1.3.1.tar.gz'
@homepage='http://jruby.org/'
@md5='c7e2aa4a3065db445a8b3e17ecff9fe0'
def install
system "ant"
Dir.chdir 'bin' do
FileUtils.rm Dir['*.bat']
Dir['*'].each do |file|
FileUtils.mv file, "j#{file}" unless file.match /^[j_]/
end
end
prefix.install Dir['*']
end
end
|