40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Rubinius < Formula
|
|
url 'http://asset.rubini.us/rubinius-1.0.1-20100603.tar.gz'
|
|
version '1.0.1'
|
|
homepage 'http://rubini.us/'
|
|
md5 'eb185703c7ae0c0210e8dcb7f783ee8e'
|
|
head 'git://github.com/evanphx/rubinius.git'
|
|
|
|
aka "rbx"
|
|
|
|
# Do not strip binaries, or else it fails to run.
|
|
def skip_clean?(path); true end
|
|
|
|
def install
|
|
# Let Rubinius define its own flags; messing with these causes build breaks.
|
|
%w{CC CXX LD CFLAGS CXXFLAGS CPPFLAGS LDFLAGS}.each { |e| ENV.delete(e) }
|
|
|
|
ENV['RELEASE'] = "#{version}" # to fix issues with "path already exists"
|
|
|
|
# "--skip-system" means to use the included LLVM
|
|
system "./configure", "--skip-system",
|
|
"--prefix", "#{prefix}",
|
|
"--includedir", "#{include}/rubinius",
|
|
"--libdir", lib,
|
|
"--mandir", man, # For completeness; no manpages exist yet.
|
|
"--gemsdir", "#{lib}/rubinius/gems"
|
|
|
|
ohai "config.rb", File.open('config.rb').to_a if ARGV.debug? or ARGV.verbose?
|
|
|
|
system "/usr/bin/ruby", "-S", "rake", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Consider using RVM or Cider to manage Ruby environments:
|
|
* RVM: http://rvm.beginrescueend.com/
|
|
* Cider: http://www.atmos.org/cider/intro.html
|
|
EOS
|
|
end
|
|
end
|