2010-05-03 03:39:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class R < Formula
|
2011-02-25 17:06:47 +00:00
|
|
|
url 'http://cran.r-project.org/src/base/R-2/R-2.12.2.tar.gz'
|
2010-05-03 03:39:48 +00:00
|
|
|
homepage 'http://www.R-project.org/'
|
2011-02-25 17:06:47 +00:00
|
|
|
md5 'bc70b51dddab8aa39066710624e55d5e'
|
2010-05-03 03:39:48 +00:00
|
|
|
|
|
|
|
def install
|
2011-03-11 23:30:15 +00:00
|
|
|
ENV.fortran
|
2010-07-10 19:33:43 +00:00
|
|
|
|
2011-03-11 23:30:15 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--with-aqua",
|
|
|
|
"--enable-R-framework",
|
|
|
|
"--with-lapack"
|
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
|
|
|
|
end
|