Files
transmission/release/windows/build-openssl.ps1
2025-12-31 06:25:27 +00:00

42 lines
984 B
PowerShell

#!/usr/bin/env pwsh
$global:OpenSslVersion = '3.5.4'
$global:OpenSslDeps = @()
function global:Build-OpenSsl([string] $PrefixDir, [string] $Arch, [string] $DepsPrefixDir) {
$Filename = "openssl-${OpenSslVersion}.tar.gz"
$Url = "https://www.openssl.org/source/${Filename}"
$SourceDir = Invoke-DownloadAndUnpack $Url $Filename
$BuildDir = $SourceDir
$ConfigName = switch ($Arch) {
'x86' { 'VC-WIN32' }
'x64' { 'VC-WIN64A' }
'arm64' { 'VC-WIN64-ARM' }
}
$ConfigOptions = @(
"--prefix=${PrefixDir}"
'--api=1.1.0'
$ConfigName
'shared'
'no-capieng'
'no-comp'
'no-deprecated'
'no-dso'
'no-dynamic-engine'
'no-engine'
'no-external-tests'
'no-hw'
'no-stdio'
'no-tests'
)
Push-Location -Path $BuildDir
Invoke-VcEnvCommand perl Configure @ConfigOptions
Invoke-VcEnvCommand jom install_dev
Pop-Location
}