ScoopInstaller_Main/julia.json
Michael Tyson 92a15bdb12 Changes to Julia Installer
There's a new julia-installer.exe install file which made extract_dir no longer usable.  It's a Nullsoft Installation package so I updated the manifest with the installer and uninstaller files as well as the command line arguments to go with each.
2014-09-29 12:54:20 -04:00

40 lines
987 B
JSON

{
"homepage": "http://julialang.org",
"version": "0.3.1",
"license": "MIT",
"architecture": {
"64bit": {
"url": "http://s3.amazonaws.com/julialang/bin/winnt/x64/0.3/julia-0.3.1-win64.exe#/dl.7z",
"hash": "9281860af4939b48bb69d87b1c39777ee2e02a5b3d6a70b758b03a1c87bfe2ec"
},
"32bit": {
"url": "http://s3.amazonaws.com/julialang/bin/winnt/x86/0.3/julia-0.3.1-win32.exe#/dl.7z",
"hash": "214d2a57da9d12ba7e39ef9cb2a41478d0901e1f79943a6c8b54ffe6958e0936"
}
},
"installer": {
"file": "julia-installer.exe",
"args": [
"/S",
"/D=$dir"
]
},
"uninstaller": {
"file": "uninstall.exe",
"args": "/S"
},
"env_set": {
"JULIA_HOME": "$dir\\bin",
"JULIA_EXE": "julia.exe",
"JULIA": "$dir\\bin\\julia.exe",
"JL_PRIVATE_LIB_DIR": "bin"
},
"bin": [
[ "bin\\julia.exe", "julia" ]
],
"checkver": {
"url": "http://julialang.org/downloads/",
"re": "<h1>Current Release</h1>\\s*<a name=\"v([^\"]+)\"></a>"
}
}