问题描述
我想最好在Mac OS X(Mavericks)上与Homebrew一起安装libRmath.dylib
,因为我已经使用了此软件包管理器.
I would like to install libRmath.dylib
on Mac OS X (Mavericks) preferably with Homebrew since I already use this package manager.
我没有找到libRmath
的公式,但是我确实找到了R
的公式,所以我尝试将其扩展为(见结尾处的整个文件):
I did not find a formula for libRmath
, but I did find a formula for R
so I tried to extend it with (see entire file at end):
# Also build libRmath.dylib
system "cd src/nmath/standalone"
system "make"
system "make install"
system "cd ../../.."
lib.mkpath
ln_s prefix+"R.framework/Resources/lib/", lib
如果我手动执行命令,则命令./configure; cd src/nmath/standalone; make
会创建libRmath.dylib
.但不使用brew install r
.我在Cellar
中找不到libRmath.dylib
.我究竟做错了什么? (请注意,我是Ruby和Homebrew公式的新手.)
The commands ./configure; cd src/nmath/standalone; make
do create libRmath.dylib
if I execute them manually. But not using brew install r
. I cannot find libRmath.dylib
in Cellar
. What am I doing wrong? (Note that I am new to Ruby and Homebrew's formula.)
下面是整个文件.
require 'formula'
class RDownloadStrategy < SubversionDownloadStrategy
def stage
quiet_safe_system 'cp', '-r', @clone, Dir.pwd
Dir.chdir cache_filename
end
end
class R < Formula
homepage 'http://www.r-project.org/'
url 'http://cran.rstudio.com/src/base/R-3/R-3.1.1.tar.gz'
mirror 'http://cran.r-project.org/src/base/R-3/R-3.1.1.tar.gz'
sha1 'e974ecc92e49266529e8e791e02a80c75e50b696'
head do
url 'https://svn.r-project.org/R/trunk', :using => RDownloadStrategy
depends_on :tex
end
option "without-accelerate", "Build without the Accelerate framework (use Rblas)"
option 'without-check', 'Skip build-time tests (not recommended)'
option 'without-tcltk', 'Build without Tcl/Tk'
depends_on :fortran
depends_on 'readline'
depends_on 'gettext'
depends_on 'libtiff'
depends_on 'jpeg'
depends_on 'cairo'
depends_on :x11 => :recommended
depends_on 'valgrind' => :optional
depends_on 'openblas' => :optional
# This is the same script that Debian packages use.
resource 'completion' do
url 'https://rcompletion.googlecode.com/svn-history/r28/trunk/bash_completion/R', :using => :curl
version 'r28'
sha1 'af734b8624b33f2245bf88d6782bea0dc5d829a4'
end
def install
args = [
"--prefix=#{prefix}",
"--with-aqua",
"--with-libintl-prefix=#{Formula['gettext'].prefix}",
"--enable-R-framework",
]
if build.with? 'valgrind'
args << '--with-valgrind-instrumentation=2'
ENV.Og
end
if build.with? "openblas"
args << "--with-blas=-L#{Formula["openblas"].opt_lib} -lopenblas" << "--with-lapack"
elsif build.with? "accelerate"
args << "--with-blas=-framework Accelerate" << "--with-lapack"
# Fall back to Rblas without-accelerate or -openblas
end
args << '--without-tcltk' if build.without? 'tcltk'
args << '--without-x' if build.without? 'x11'
# Also add gettext include so that libintl.h can be found when installing packages.
ENV.append "CPPFLAGS", "-I#{Formula['gettext'].include}"
# Pull down recommended packages if building from HEAD.
system './tools/rsync-recommended' if build.head?
system "./configure", *args
system "make"
ENV.deparallelize # Serialized installs, please
system "make check 2>&1 | tee make-check.log" if build.with? 'check'
system "make install"
# Also build libRmath.dylib
system "cd src/nmath/standalone"
system "make"
system "make install"
system "cd ../../.."
lib.mkpath
ln_s prefix+"R.framework/Resources/lib/", lib
# Link binaries and manpages from the Framework
# into the normal locations
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
bash_completion.install resource('completion')
prefix.install 'make-check.log' if build.with? 'check'
end
test do
(testpath / 'test.R').write('print(1+1);')
system "r < test.R --no-save"
system "rscript test.R"
end
def caveats; <<-EOS.undent
To enable rJava support, run the following command:
R CMD javareconf JAVA_CPPFLAGS=-I/System/Library/Frameworks/JavaVM.framework/Headers
EOS
end
end
推荐答案
公式r
现在具有选项with-librmath-only
,该选项仅构建独立的libRmath库.
Formula r
now has the option with-librmath-only
which only builds the standalone libRmath library.
这篇关于使用Homebrew在Mac OS X上安装libRmath的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!