mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 08:25:03 -05:00
12 lines
532 B
PowerShell
12 lines
532 B
PowerShell
$name = 'filebot'
|
|
$type = 'msi'
|
|
$silent = '/quiet'
|
|
|
|
$url32 = 'http://downloads.sourceforge.net/project/filebot/filebot/FileBot_@{version}/FileBot_@{version}_x86.msi'
|
|
$url64 = 'http://downloads.sourceforge.net/project/filebot/filebot/FileBot_@{version}/FileBot_@{version}_x64.msi'
|
|
$checksum32 = '@{x86.msi.sha256}'
|
|
$checksum64 = '@{x64.msi.sha256}'
|
|
$algorithm = 'sha256'
|
|
|
|
Install-ChocolateyPackage $name $type $silent $url32 $url64 -checksum $checksum32 -checksumType $algorithm -checksum64 $checksum64 -checksumType64 $algorithm
|