chocolatey/packages/joplin/tools/chocolateyinstall.ps1

15 lines
542 B
PowerShell
Raw Normal View History

# Joplin Notes and To-Do
# 2018 foo.li systeme + software
$packageName = 'joplin'
$packageSearch = 'Joplin*'
$installerType = 'exe'
$silentArgs = '/ALLUSERS=1 /S'
2018-09-17 09:12:22 +02:00
$version = '1.0.107'
$url = 'https://github.com/laurent22/joplin/releases/download/v' + $version + '/Joplin-Setup-' + $version + '.exe'
2018-09-17 09:12:22 +02:00
$checksum = '9E98114C335FEC4C8DFAD29228BC4E0E308DA212'
$checksumType = 'sha1'
2018-07-05 16:30:23 +02:00
Install-ChocolateyPackage $packageName $installerType $silentArgs $url `
-checksum $checksum -checksumType $checksumType