2010-05-03 03:39:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-05-02 19:03:02 +00:00
|
|
|
class RBashCompletion < Formula
|
|
|
|
# This is the same script that Debian packages use.
|
2012-03-16 22:22:11 +00:00
|
|
|
url 'http://rcompletion.googlecode.com/svn-history/r28/trunk/bash_completion/R', :using => :curl
|
|
|
|
version 'r28'
|
|
|
|
md5 'd5493f7a8422147c2f5c63c6a18ebda4'
|
2011-05-02 19:03:02 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class R < Formula
|
2011-12-22 19:45:25 +00:00
|
|
|
homepage 'http://www.r-project.org'
|
2012-06-22 13:37:33 +00:00
|
|
|
url 'http://cran.r-project.org/src/base/R-2/R-2.15.1.tar.gz'
|
|
|
|
sha1 'f0e6912be6dfc0d1fdc4be66048304d8befe8424'
|
2010-05-03 03:39:48 +00:00
|
|
|
|
2012-07-09 18:03:01 +00:00
|
|
|
head 'https://svn.r-project.org/R/trunk'
|
|
|
|
|
2012-08-27 05:11:37 +00:00
|
|
|
option 'with-valgrind', 'Compile an unoptimized build with support for the Valgrind debugger'
|
|
|
|
|
2012-01-12 20:27:46 +00:00
|
|
|
depends_on 'readline'
|
2012-02-04 22:53:39 +00:00
|
|
|
depends_on 'libtiff'
|
|
|
|
depends_on 'jpeg'
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2012-02-04 22:53:39 +00:00
|
|
|
|
2012-08-27 05:11:37 +00:00
|
|
|
depends_on 'valgrind' if build.include? 'with-valgrind'
|
2011-04-13 16:26:01 +00:00
|
|
|
|
2010-05-03 03:39:48 +00:00
|
|
|
def install
|
2012-08-27 05:11:37 +00:00
|
|
|
ENV.Og if build.include? 'with-valgrind'
|
2011-03-11 23:30:15 +00:00
|
|
|
ENV.fortran
|
2010-07-10 19:33:43 +00:00
|
|
|
|
2011-04-13 16:26:01 +00:00
|
|
|
args = [
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-aqua",
|
|
|
|
"--enable-R-framework",
|
|
|
|
"--with-lapack"
|
|
|
|
]
|
2012-08-27 05:11:37 +00:00
|
|
|
args << '--with-valgrind-instrumentation=2' if build.include? 'with-valgrind'
|
2011-04-13 16:26:01 +00:00
|
|
|
|
2012-07-09 18:03:01 +00:00
|
|
|
# Pull down recommended packages if building from HEAD.
|
2012-08-27 05:11:37 +00:00
|
|
|
system './tools/rsync-recommended' if build.head?
|
2012-07-09 18:03:01 +00:00
|
|
|
|
2011-04-13 16:26:01 +00:00
|
|
|
system "./configure", *args
|
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
|
2011-05-02 19:03:02 +00:00
|
|
|
|
|
|
|
bash_dir = prefix + 'etc/bash_completion.d'
|
|
|
|
bash_dir.mkpath
|
|
|
|
RBashCompletion.new.brew { bash_dir.install 'R' }
|
2010-05-03 03:39:48 +00:00
|
|
|
end
|
2011-03-07 06:17:39 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
R.framework was installed to:
|
|
|
|
#{prefix}/R.framework
|
|
|
|
|
|
|
|
To use this Framework with IDEs such as RStudio, it must be linked
|
|
|
|
to the standard OS X location:
|
|
|
|
ln -s "#{prefix}/R.framework" /Library/Frameworks
|
2011-09-24 19:52:24 +00:00
|
|
|
|
|
|
|
To enable rJava support, run the following command:
|
|
|
|
R CMD javareconf JAVA_CPPFLAGS=-I/System/Library/Frameworks/JavaVM.framework/Headers
|
2011-03-07 06:17:39 +00:00
|
|
|
EOS
|
|
|
|
end
|
2010-05-03 03:39:48 +00:00
|
|
|
end
|