Commit ecdacc18 authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #283 from lyxell/add-r

Add R package
parents 4b35769e 5f751d6d
require 'package'
class R < Package
version '3.3.2'
source_url 'https://cran.rstudio.com/src/base/R-3/R-3.3.2.tar.gz'
source_sha1 '0e39e9c2d28fe6bab9c55ca23e08ba8727fd2fca'
def self.build
system './configure',
'--with-x=no' # X is not available
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment