|
|
|
|
$ErrorActionPreference = 'Stop'; # stop on all errors
|
|
|
|
|
$packagename = 'i2pd'
|
|
|
|
|
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
|
|
|
|
|
$url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.45.1/i2pd_2.45.1_win32_mingw.zip'
|
|
|
|
|
$checksum = 'aa661099028ba2580063dc9763d00caef09599e87cafacf23c79470533a526de'
|
|
|
|
|
$checksumType = 'sha256'
|
|
|
|
|
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.45.1/i2pd_2.45.1_win64_mingw.zip'
|
|
|
|
|
$checksum64 = '164bbc05a89bf8248f99e2440dc026ebe4bfafa0495c4a69efad5d8085a8e000'
|
|
|
|
|
$checksumType64 = 'sha256'
|
|
|
|
|
|
|
|
|
|
Install-ChocolateyZipPackage -packageName "$packagename" `
|
|
|
|
|
-UnzipLocation "$toolsDir" `
|
|
|
|
|
-Url "$url" `
|
|
|
|
|
-checksum "$checksum" `
|
|
|
|
|
-checksumType "$checksumType" `
|
|
|
|
|
-Url64 "$url64" `
|
|
|
|
|
-checksum64 "$checksum64" `
|
|
|
|
|
-checksumType64 "$checksumType64"
|
|
|
|
|
|
|
|
|
|
# Install configs and certificates if i2pd dir not available, otherwise just update certificates
|
|
|
|
|
$dataDir = Join-Path $Env:APPDATA 'i2pd'
|
|
|
|
|
if (Test-Path -Path $dataDir) {
|
|
|
|
|
Write-Host "Updating i2pd certificates"
|
|
|
|
|
Remove-Item $dataDir\certificates -Recurse
|
|
|
|
|
Copy-Item $toolsDir\contrib\certificates -Destination $dataDir\certificates -Recurse
|
|
|
|
|
} else {
|
|
|
|
|
Write-Host "Copying default configs and certificates"
|
|
|
|
|
Copy-Item $toolsDir\contrib -Destination $dataDir -Recurse
|
|
|
|
|
}
|