Skip to content

Commit

Permalink
AU: 1 updated - codelite
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Mar 7, 2018
1 parent 0470952 commit 0259c93
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion automatic/codelite/codelite.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>codelite</id>
<version>11.0</version>
<version>12.0</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/codelite</packageSourceUrl>
<owners>chocolatey</owners>
<title>CodeLite</title>
Expand Down
8 changes: 4 additions & 4 deletions automatic/codelite/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/eranif/codelite/releases/latest>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/eranif/codelite/releases/download/11.0/codelite-x86-11.0.0.7z>
64-Bit software: <https://github.com/eranif/codelite/releases/download/11.0/codelite-amd64-11.0.1.7z>
32-Bit software: <https://github.com/eranif/codelite/releases/download/12.0/codelite-x86-12.0.0.exe.7z>
64-Bit software: <https://github.com/eranif/codelite/releases/download/12.0/codelite-amd64-12.0.0.exe.7z>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 8E810BBE58855C1687A2EFCF5DEBFEEA5FE9C8C4210C95D14CCC33A091042C7F
checksum64: 4682F9E6ECCC7DDF212A0D030AF333073B5E6C18124C825F83475AC0CE1CED99
checksum32: BEBE472C43DFA1E0F0277C5534BD8C5B8141733126C873478C00DC5F990BE9DA
checksum64: 51CC36BF92945EE079C1525F4E7A24E842271795AFDD406233872AEF6F956AF1

The file 'LICENSE.txt' has been obtained from <https://github.com/eranif/codelite/blob/5c29b6cb2a48dbf2d9b243a173c540cf85d70f4f/LICENSE>
6 changes: 3 additions & 3 deletions automatic/codelite/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = 'codelite'
fileType = 'exe'
file = "$toolsPath\codelite-x86-11.0.0.7z"
file64 = "$toolsPath\codelite-amd64-11.0.1.7z"
file = "$toolsPath\codelite-x86-12.0.0.exe.7z"
file64 = "$toolsPath\codelite-amd64-12.0.0.exe.7z"
destination = Get-PackageCacheLocation
softwareName = 'CodeLite'
silentArgs = '/VERYSILENT /SP- /SUPPRESSMSGBOXES'
Expand All @@ -16,7 +16,7 @@ $packageArgs = @{
Get-ChocolateyUnzip @packageArgs

$packageArgs.Remove('file64')
$packageArgs.file = Get-ChildItem -Path $packageArgs.destination -Filter "*.exe" | select -first 1 -expand FullName
$packageArgs.file = Get-ChildItem -Path $packageArgs.destination -Filter "*.exe" | Select-Object -first 1 -expand FullName

Install-ChocolateyInstallPackage @packageArgs

Expand Down

0 comments on commit 0259c93

Please sign in to comment.