Skip to content

Commit

Permalink
AU: 1 updated - mixxx
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 11, 2019
1 parent 6d194b6 commit 97313e9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions automatic/mixxx/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ Package can be verified like this:

1. Go to

x32: https://downloads.mixxx.org/mixxx-2.1.5/mixxx-2.1.5-win32.exe
x64: https://downloads.mixxx.org/mixxx-2.1.5/mixxx-2.1.5-win64.exe
x32: https://downloads.mixxx.org/mixxx-2.2.0/mixxx-2.2.0-win32.exe
x64: https://downloads.mixxx.org/mixxx-2.2.0/mixxx-2.2.0-win64.exe

to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: B0B66428323B58D2A046F35C297BCE2606C22D17434987D668574CD34B2C18BB
checksum64: 59591FA240EA81760CA77B935595060DF1CFC5DD2CEE1DE16CC10BB7C5CD3B25
checksum32: f8fa5a0562947555d13986a08e222f79ec4b458f51be9cca50d3d4d7c0072aa32407301cc6e12ecf492f77adad937b5f41551397400625d3668d9373b47a0c17
checksum64: 6d4bb3707f95095f79958eda6eee576b166c8f630dde512be8d56fcd75a6d4208af2fe199c9f9ba6fb30b129bef15d5b37cc47bdf28157e0d2d0adc0513c3024

File 'license.txt' is obtained from:
https://www.gnu.org/licenses/gpl-2.0.html
2 changes: 1 addition & 1 deletion automatic/mixxx/mixxx.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>mixxx</id>
<version>2.1.5</version>
<version>2.2.0</version>
<title>Mixxx</title>
<owners>chocolatey</owners>
<authors>Mixxx Development Team</authors>
Expand Down
14 changes: 7 additions & 7 deletions automatic/mixxx/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = ''
url64bit = ''
url = 'https://downloads.mixxx.org/mixxx-2.2.0/mixxx-2.2.0-win32.exe'
url64bit = 'https://downloads.mixxx.org/mixxx-2.2.0/mixxx-2.2.0-win64.exe'

softwareName = 'Mixxx *'

checksum = ''
checksumType = ''
checksum64 = ''
checksumType64 = ''
checksum = 'f8fa5a0562947555d13986a08e222f79ec4b458f51be9cca50d3d4d7c0072aa32407301cc6e12ecf492f77adad937b5f41551397400625d3668d9373b47a0c17'
checksumType = 'sha512'
checksum64 = '6d4bb3707f95095f79958eda6eee576b166c8f630dde512be8d56fcd75a6d4208af2fe199c9f9ba6fb30b129bef15d5b37cc47bdf28157e0d2d0adc0513c3024'
checksumType64 = 'sha512'

silentArgs = '/quiet'
validExitCodes = @(0)
}
Install-ChocolateyPackage @packageArgs
Install-ChocolateyPackage @packageArgs

0 comments on commit 97313e9

Please sign in to comment.