mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-02 14:51:18 +00:00
61 lines
2.3 KiB
JSON
61 lines
2.3 KiB
JSON
{
|
|
"version": "3.5.2",
|
|
"description": "TLS/SSL toolkit",
|
|
"homepage": "https://slproweb.com/products/Win32OpenSSL.html",
|
|
"license": "Apache-2.0",
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://slproweb.com/download/Win64OpenSSL-3_5_2.exe",
|
|
"hash": "5c48d46dfe33d296a0b36b6cd418ef5b93b34cbe7d8447e68291ce82f570459f"
|
|
},
|
|
"32bit": {
|
|
"url": "https://slproweb.com/download/Win32OpenSSL-3_5_2.exe",
|
|
"hash": "c3bcae26fe55b7b9cbc8c7826d9fdd78c4a8472fb2a18351a46a03c5c5455d68"
|
|
},
|
|
"arm64": {
|
|
"url": "https://slproweb.com/download/Win64ARMOpenSSL-3_5_2.exe",
|
|
"hash": "bf88b5d3abe47c43fef7fe643c054ee9b8f86665f19d0138cfe8ef2d3b306cfb"
|
|
}
|
|
},
|
|
"pre_install": [
|
|
"$arch = switch ($architecture) {",
|
|
" '64bit' { 'x64'; break }",
|
|
" '32bit' { 'x86'; break }",
|
|
" 'arm64' { $architecture; break }",
|
|
"}",
|
|
"$null = Get-ChildItem \"$dir/lib/VC/$arch/MT\" | ForEach-Object { New-Item -ItemType HardLink -Target $_.FullName -Path \"$dir/lib/$($_.Name)\" }"
|
|
],
|
|
"innosetup": true,
|
|
"env_add_path": "bin",
|
|
"env_set": {
|
|
"OPENSSL_ROOT_DIR": "$dir",
|
|
"OPENSSL_LIB_DIR": "$dir\\lib",
|
|
"OPENSSL_INCLUDE_DIR": "$dir\\include",
|
|
"OPENSSL_MODULES": "$dir\\bin",
|
|
"OPENSSL_CONF": "$dir\\bin\\cnf\\openssl.cnf"
|
|
},
|
|
"checkver": {
|
|
"url": "https://raw.githubusercontent.com/slproweb/opensslhashes/master/win32_openssl_hashes.json",
|
|
"jsonpath": "$.files..basever",
|
|
"regex": "([\\d.]+)",
|
|
"reverse": true
|
|
},
|
|
"autoupdate": {
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://slproweb.com/download/Win64OpenSSL-$underscoreVersion.exe"
|
|
},
|
|
"32bit": {
|
|
"url": "https://slproweb.com/download/Win32OpenSSL-$underscoreVersion.exe"
|
|
},
|
|
"arm64": {
|
|
"url": "https://slproweb.com/download/Win64ARMOpenSSL-$underscoreVersion.exe"
|
|
}
|
|
},
|
|
"hash": {
|
|
"url": "https://raw.githubusercontent.com/slproweb/opensslhashes/master/win32_openssl_hashes.json",
|
|
"jsonpath": "$.files.['$basename'].sha256"
|
|
}
|
|
}
|
|
}
|