ScoopInstaller_Main/bucket/ghostscript.json
2024-03-07 16:27:02 +00:00

72 lines
3.2 KiB
JSON

{
"version": "10.03.0",
"description": "An interpreter for the PostScript language and for PDF",
"homepage": "https://www.ghostscript.com",
"license": {
"identifier": "AGPL-3.0-or-later|Freeware",
"url": "https://www.ghostscript.com/license.html"
},
"architecture": {
"64bit": {
"url": "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10030/gs10030w64.exe#/dl.7z",
"hash": "sha512:a78e4bde43a391d0f380d10cbe2eeb16459f7ccdd8edd325a77099832f7d8342b6c07bae532b14cbeb3395cc836c035f91d46e6da052e7d8900fc2c00a98c641",
"bin": [
"bin\\gswin64.exe",
"bin\\gswin64c.exe",
[
"bin\\gswin64c.exe",
"gs"
]
]
},
"32bit": {
"url": "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10030/gs10030w32.exe#/dl.7z",
"hash": "sha512:fc154c629e62aa7ed608aa9c1c2a0973e24b7acc362ec1b8d9b413de2b88e71993b79b5c4ffad6b9137aa50cfbb08f2e28a244a9163202a462ad3a70492597e1",
"bin": [
"bin\\gswin32.exe",
"bin\\gswin32c.exe",
[
"bin\\gswin32c.exe",
"gs"
]
]
}
},
"post_install": [
"$reg_app = \"HKCU:\\SOFTWARE\\Artifex\\GPL Ghostscript\\$version\"",
"$reg_lib = \"HKCU:\\SOFTWARE\\GPL Ghostscript\\$version\"",
"if ($global) { $reg_app = $reg_app.Replace('HKCU:','HKLM:'); $reg_lib = $reg_lib.Replace('HKCU:','HKLM:') }",
"$reg_gs_dll = \"$dir\\bin\\gsdll$($architecture.Replace('bit', '')).dll\".Replace('\\','\\\\')",
"$reg_gs_lib = \"$dir\\bin;$dir\\lib;$dir\\fonts\".Replace('\\','\\\\')",
"New-Item -Path $reg_app -Value $dir.Replace('\\','\\\\') -Force | Out-Null",
"New-Item -Path $reg_lib -Value $dir.Replace('\\','\\\\') -Force | Out-Null",
"New-ItemProperty -Path $reg_lib -Name 'GS_DLL' -Value $reg_gs_dll -PropertyType String | Out-Null",
"New-ItemProperty -Path $reg_lib -Name 'GS_LIB' -Value $reg_gs_lib -PropertyType String | Out-Null"
],
"env_add_path": "lib",
"post_uninstall": [
"$reg_app = \"HKCU:\\SOFTWARE\\Artifex\\GPL Ghostscript\\$version\"",
"$reg_lib = \"HKCU:\\SOFTWARE\\GPL Ghostscript\\$version\"",
"if ($global) { $reg_app = $reg_app.Replace('HKCU:','HKLM:'); $reg_lib = $reg_lib.Replace('HKCU:','HKLM:') }",
"Remove-Item -Path $reg_app -Force -Recurse",
"Remove-Item -Path $reg_lib -Force -Recurse"
],
"checkver": {
"github": "https://github.com/ArtifexSoftware/ghostpdl-downloads/",
"regex": "Ghostscript/GhostPDL ([\\d.]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs$cleanVersion/gs$cleanVersionw64.exe#/dl.7z"
},
"32bit": {
"url": "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs$cleanVersion/gs$cleanVersionw32.exe#/dl.7z"
}
},
"hash": {
"url": "$baseurl/SHA512SUMS"
}
}
}