aboutsummaryrefslogtreecommitdiff
path: root/tools/chocolateyinstall.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'tools/chocolateyinstall.ps1')
-rw-r--r--tools/chocolateyinstall.ps121
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/chocolateyinstall.ps1 b/tools/chocolateyinstall.ps1
new file mode 100644
index 0000000..a8c6b95
--- /dev/null
+++ b/tools/chocolateyinstall.ps1
@@ -0,0 +1,21 @@
+
+$ErrorActionPreference = 'Stop';
+$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
+$url = 'https://github.com/benibela/xidel/releases/download/Xidel_0.9.8/xidel-0.9.8.win32.zip'
+
+$packageArgs = @{
+ packageName = $env:ChocolateyPackageName
+ unzipLocation = $toolsDir
+ fileType = 'exe'
+ url = $url
+ url64 = $url
+ softwareName = 'xidel*'
+
+ checksum = '96854C2BE1E3755F56FABB8F00D1FE567108461B9FAB139039219A1B7C17E382'
+ checksumType = 'sha256'
+
+ silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
+ validExitCodes= @(0, 3010, 1641)
+}
+
+Install-ChocolateyZipPackage @packageArgs \ No newline at end of file