class R < Formula desc "Software environment for statistical computing" homepage "https://www.r-project.org/" url "https://cran.r-project.org/src/base/R-3/R-3.5.1.tar.gz" sha256 "0463bff5eea0f3d93fa071f79c18d0993878fd4f2e18ae6cf22c1639d11457ed" bottle do sha256 "7b0dc8ab038b82baa8961a5ca4fd78efcc53b34ada5953657b3b6faded7359a3" => :mojave sha256 "4cdfd2024463182b97053abf06d8e575a3b2cc9b432255f1a5398da3fd067515" => :high_sierra sha256 "de63492e498039f4724b5565fb9f6591f1b8639ed01bce78d92eefb579526ef4" => :sierra sha256 "20d6f0a9f62ef08f7ddc7dc3cf731681f35ea0757ffb42b6c63c6c472d147240" => :el_capitan end depends_on "pkg-config" => :build depends_on "gcc" # for gfortran depends_on "gettext" depends_on "jpeg" depends_on "libpng" depends_on "pcre" depends_on "readline" depends_on "xz" depends_on :java => :optional depends_on "openblas" => :optional # needed to preserve executable permissions on files without shebangs skip_clean "lib/R/bin" resource "gss" do url "https://cloud.r-project.org/src/contrib/gss_2.1-9.tar.gz", :using => :nounzip mirror "https://mirror.las.iastate.edu/CRAN/src/contrib/gss_2.1-9.tar.gz" sha256 "2961fe61c1d3bb3fe7b8e1070d6fb1dfc5d71e0c6e8a6b7c46ff6b42867c4cf3" end def install # Fix dyld: lazy symbol binding failed: Symbol not found: _clock_gettime if MacOS.version == "10.11" && MacOS::Xcode.installed? && MacOS::Xcode.version >= "8.0" ENV["ac_cv_have_decl_clock_gettime"] = "no" end args = [ "--prefix=#{prefix}", "--enable-memory-profiling", "--without-cairo", "--without-x", "--with-aqua", "--with-lapack", "--enable-R-shlib", "SED=/usr/bin/sed", # don't remember Homebrew's sed shim ] if build.with? "openblas" args << "--with-blas=-L#{Formula["openblas"].opt_lib} -lopenblas" ENV.append "LDFLAGS", "-L#{Formula["openblas"].opt_lib}" else args << "--with-blas=-framework Accelerate" ENV.append_to_cflags "-D__ACCELERATE__" if ENV.compiler != :clang end if build.with? "java" args << "--enable-java" else args << "--disable-java" end # Help CRAN packages find gettext and readline ["gettext", "readline"].each do |f| ENV.append "CPPFLAGS", "-I#{Formula[f].opt_include}" ENV.append "LDFLAGS", "-L#{Formula[f].opt_lib}" end system "./configure", *args system "make" ENV.deparallelize do system "make", "install" end cd "src/nmath/standalone" do system "make" ENV.deparallelize do system "make", "install" end end r_home = lib/"R" # make Homebrew packages discoverable for R CMD INSTALL inreplace r_home/"etc/Makeconf" do |s| s.gsub!(/^CPPFLAGS =.*/, "\\0 -I#{HOMEBREW_PREFIX}/include") s.gsub!(/^LDFLAGS =.*/, "\\0 -L#{HOMEBREW_PREFIX}/lib") s.gsub!(/.LDFLAGS =.*/, "\\0 $(LDFLAGS)") end include.install_symlink Dir[r_home/"include/*"] lib.install_symlink Dir[r_home/"lib/*"] # avoid triggering mandatory rebuilds of r when gcc is upgraded inreplace lib/"R/etc/Makeconf", Formula["gcc"].prefix.realpath, Formula["gcc"].opt_prefix end def post_install short_version = `#{bin}/Rscript -e 'cat(as.character(getRversion()[1,1:2]))'`.strip site_library = HOMEBREW_PREFIX/"lib/R/#{short_version}/site-library" site_library.mkpath ln_s site_library, lib/"R/site-library" end test do assert_equal "[1] 2", shell_output("#{bin}/Rscript -e 'print(1+1)'").chomp assert_equal ".dylib", shell_output("#{bin}/R CMD config DYLIB_EXT").chomp testpath.install resource("gss") system bin/"R", "CMD", "INSTALL", "--library=.", Dir["gss*"].first assert_predicate testpath/"gss/libs/gss.so", :exist?, "Failed to install gss package" end end