forked from ScoopInstaller/Versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rstudio11.json
40 lines (40 loc) · 1.65 KB
/
rstudio11.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"version": "1.1.463",
"homepage": "https://www.rstudio.com/",
"description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.",
"license": "AGPL-3.0-only",
"url": "http://download1.rstudio.org/RStudio-1.1.463.zip",
"hash": "d0b1d8805b0db25d43435a2fcfefb4e6561add51f55be805e799b51d8bfa8114",
"depends": "r",
"bin": "bin\\rstudio.exe",
"shortcuts": [
[
"bin\\rstudio.exe",
"R Studio"
]
],
"architecture": {
"64bit": {
"post_install": [
"if (!(Test-Path \"$env:Appdata\\RStudio\")) {",
" New-Item \"$env:Appdata\\RStudio\" -ItemType Directory -Force | Out-Null",
" @(",
" '[General]'",
" \"RBinDir=`\"$(appdir r $global)\\current\\bin\\x64`\"\".Replace('\\', '/')",
" ) | Add-Content -Path \"$env:Appdata\\RStudio\\desktop.ini\" -Encoding UTF8 -Force",
"}"
]
},
"32bit": {
"post_install": [
"if (!(Test-Path \"$env:Appdata\\RStudio\")) {",
" New-Item \"$env:Appdata\\RStudio\" -ItemType Directory -Force | Out-Null",
" @(",
" '[General]'",
" \"RBinDir=`\"$(appdir r $global)\\current\\bin\\i386`\"\".Replace('\\', '/')",
" ) | Add-Content -Path \"$env:Appdata\\RStudio\\desktop.ini\" -Encoding UTF8 -Force",
"}"
]
}
}
}