homebrew-core/Formula/jruby.rb

36 lines
768 B
Ruby
Raw Normal View History

require 'formula'
class Jruby < Formula
homepage 'http://www.jruby.org'
2013-01-05 19:02:38 +00:00
url 'http://jruby.org.s3.amazonaws.com/downloads/1.7.2/jruby-bin-1.7.2.tar.gz'
sha1 'a51611bf23993f3b6bb5e781b97100ea99f4e702'
2012-09-14 16:07:47 +00:00
env :std
def install
# Remove Windows files
rm Dir['bin/*.{bat,dll,exe}']
# Prefix a 'j' on some commands
cd 'bin' do
Dir['*'].each do |file|
2012-02-12 22:48:24 +00:00
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
2012-02-12 22:35:56 +00:00
libexec.install Dir['*']
bin.install_symlink Dir["#{libexec}/bin/*"]
end
def test
system "#{bin}/jruby", "-e", "puts 'hello'"
end
end