2010-05-03 03:39:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class R <Formula
|
2010-08-08 19:55:26 +00:00
|
|
|
url 'http://cran.r-project.org/src/base/R-2/R-2.11.1.tar.gz'
|
2010-05-03 03:39:48 +00:00
|
|
|
homepage 'http://www.R-project.org/'
|
2010-08-08 19:55:26 +00:00
|
|
|
md5 '7421108ade3e9223263394b9bbe277ce'
|
2010-05-03 03:39:48 +00:00
|
|
|
|
|
|
|
def install
|
2010-07-10 19:33:43 +00:00
|
|
|
unless `/usr/bin/which gfortran`.chomp.size > 0
|
|
|
|
opoo 'No gfortran found in path'
|
|
|
|
puts "You'll need to `brew install gfortran` or otherwise have a copy"
|
|
|
|
puts "of gfortran in your path for this brew to work."
|
|
|
|
end
|
|
|
|
|
|
|
|
ENV["FCFLAGS"] = ENV["CFLAGS"]
|
|
|
|
ENV["FFLAGS"] = ENV["CFLAGS"]
|
|
|
|
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2010-05-03 03:39:48 +00:00
|
|
|
system "make"
|
2010-07-10 19:33:43 +00:00
|
|
|
ENV.j1 # Serialized installs, please
|
2010-05-03 03:39:48 +00:00
|
|
|
system "make install"
|
2010-07-10 19:33:43 +00:00
|
|
|
|
2010-07-18 18:22:26 +00:00
|
|
|
# Link binaries and manpages from the Framework
|
|
|
|
# into the normal locations
|
2010-07-10 19:33:43 +00:00
|
|
|
bin.mkpath
|
|
|
|
man1.mkpath
|
|
|
|
|
|
|
|
ln_s prefix+"R.framework/Resources/bin/R", bin
|
|
|
|
ln_s prefix+"R.framework/Resources/bin/Rscript", bin
|
|
|
|
ln_s prefix+"R.framework/Resources/man1/R.1", man1
|
|
|
|
ln_s prefix+"R.framework/Resources/man1/Rscript.1", man1
|
2010-05-03 03:39:48 +00:00
|
|
|
end
|
2010-07-18 18:22:26 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
R requires a fortran compiler to install.
|
|
|
|
You can install gfortran using Homebrew:
|
|
|
|
brew install gfortran
|
|
|
|
|
|
|
|
EOS
|
|
|
|
end
|
2010-05-03 03:39:48 +00:00
|
|
|
end
|