6e9340775d
Added a definition for JRuby 1.7.1 Closes Homebrew/homebrew#16408. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
651 B
Ruby
22 lines
651 B
Ruby
require 'formula'
|
|
|
|
class RubyBuild < Formula
|
|
homepage 'https://github.com/sstephenson/ruby-build'
|
|
url 'https://github.com/sstephenson/ruby-build/tarball/v20121204'
|
|
sha1 '1c29e308e46a180bbd54f380ee50934aa1f78b72'
|
|
|
|
head 'https://github.com/sstephenson/ruby-build.git'
|
|
|
|
option "without-rbenv", "Don't install as an rbenv plugin"
|
|
|
|
depends_on 'rbenv' unless build.include? 'without-rbenv'
|
|
|
|
def install
|
|
ENV['PREFIX'] = prefix
|
|
system "./install.sh"
|
|
|
|
rbenv_plugins = "#{HOMEBREW_PREFIX}/var/lib/rbenv/plugins"
|
|
mkdir_p rbenv_plugins
|
|
ln_sf opt_prefix, "#{rbenv_plugins}/#{name}" unless build.include? 'without-rbenv'
|
|
end
|
|
end
|