2024-05-27 20:25:00 +00:00

57 lines
2.1 KiB
JSON

{
"homepage": "https://github.com/tristanisham/zvm",
"version": "0.7.1",
"description": "Zig Version Manager (zvm) is a tool for managing your Zig installs",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/tristanisham/zvm/releases/download/v0.7.1/zvm-windows-amd64.zip",
"hash": "b730233cf59c7d1b64eb9f30a0ce6f2b281d3f2e4ec1c9adf7423f688ee1a6cf",
"extract_dir": "zvm-windows-amd64"
},
"arm64": {
"url": "https://github.com/tristanisham/zvm/releases/download/v0.7.1/zvm-windows-arm64.zip",
"hash": "5a5698175ae1623b08fc181e9b407fd4691c012dda39d2faa9abbe2b765e3c59",
"extract_dir": "zvm-windows-arm64"
}
},
"bin": "zvm.exe",
"checkver": {
"github": "https://github.com/tristanisham/zvm"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/tristanisham/zvm/releases/download/v$version/zvm-windows-amd64.zip",
"extract_dir": "zvm-windows-amd64"
},
"arm64": {
"url": "https://github.com/tristanisham/zvm/releases/download/v$version/zvm-windows-arm64.zip",
"extract_dir": "zvm-windows-arm64"
}
}
},
"post_install": [
"if (Test-Path ~\\.zvm) {",
" if ($null -eq (Get-Item ~\\.zvm).LinkType) {",
" Rename-Item -Path ~\\.zvm -NewName ~\\.zvm.old -Force",
" } else {",
" Remove-Item -Path ~\\.zvm -Force",
" }",
"}",
"New-Item -Path ~/.zvm -Target \"$dir\\data\" -ItemType Junction | Out-Null"
],
"uninstaller": {
"script": [
"if ((Test-Path ~\\.zvm) -and ($null -ne (Get-Item ~\\.zvm).LinkType)) {",
" Remove-Item -Path ~\\.zvm -Force",
"}",
"if (Test-Path ~\\.zvm.old) {",
" Rename-Item -Path ~\\.zvm.old -NewName .zvm -Force",
"}"
]
},
"persist": "data",
"env_add_path": "data\\bin"
}