Cyianor 6d7186d378 Version of R updated to 3.3.0 (#850)
* Apache httpd version upgrade to 2.4.20

* Update pre-install in r.json

The pre-install in the r bucket is now architecture specific and
depends on the architecture the user requested, no longer on the
architecture of the user's machine.

* Updated R to version 3.3.0
2016-05-12 07:54:39 +10:00

37 lines
1.5 KiB
JSON

{
"homepage": "https://www.r-project.org",
"version": "3.3.0",
"license": "GPL2",
"architecture": {
"64bit": {
"url": "https://cran.rstudio.com/bin/windows/base/R-3.3.0-win.exe",
"hash": "5D1A6E6FB757F4CAC916C96651A4446BA4756507707C413EA02DD067770314BA",
"pre_install": "copy-item -recurse $dir\\bin\\x64 $dir\\bin\\curr_arch"
},
"32bit": {
"url": "https://cran.rstudio.com/bin/windows/base/R-3.3.0-win.exe",
"hash": "5D1A6E6FB757F4CAC916C96651A4446BA4756507707C413EA02DD067770314BA",
"pre_install": "copy-item -recurse $dir\\bin\\i386 $dir\\bin\\curr_arch"
}
},
"innosetup": true,
"bin": [
"bin\\curr_arch\\r.exe",
"bin\\curr_arch\\rterm.exe",
"bin\\curr_arch\\rscript.exe"
],
"notes": "You'll need to type 'r.ps1' or 'r.cmd' to run R, because in Powershell 'r' runs the last command. Alternatively 'rterm' can be used to start the interactive R terminal session.
You can remove Powershell's 'r' command with:
rm alias:\\r
... but this only affects your current session: if you'd like to remove it for all future sessions you need to add the command above to your Powershell profile.
Annoying, right?! You might want to check out Pshazz (scoop install pshazz)--this has a plugin to remove some crazy aliases from Powershell, as well as many other improvements.
",
"checkver": {
"url": "https://cran.rstudio.com/bin/windows/base/",
"re": "<h1>R-([0-9\\.]+)"
}
}