Skip to content

Commit

Permalink
AU: 1 updated - supertuxkart
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Apr 24, 2019
1 parent 095ef48 commit 7b25dfc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion automatic/supertuxkart/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/edba4a5849ff756e767cba86641bea97ff5721fe/icons/supertuxkart.png" width="48" height="48"/> [supertuxkart](https://chocolatey.org/packages/supertuxkart)
# <img src="https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/supertuxkart.png" width="48" height="48"/> [supertuxkart](https://chocolatey.org/packages/supertuxkart)


SuperTuxKart is a Free 3D kart racing game; we want to make the game fun more than we want to make it realistic. You can play with up to 4 friends on one PC, racing against each other or just try to beat the computer (a network multiplayer feature is planned).
Expand Down
6 changes: 3 additions & 3 deletions automatic/supertuxkart/supertuxkart.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>supertuxkart</id>
<version>0.9.3</version>
<version>1.0</version>
<title>SuperTuxKart</title>
<owners>chocolatey</owners>
<authors>SuperTuxKart developers</authors>
Expand All @@ -13,7 +13,7 @@
<mailingListUrl>http://forum.freegamedev.net/viewforum.php?f=16</mailingListUrl>
<bugTrackerUrl>https://github.com/supertuxkart/stk-code/issues</bugTrackerUrl>
<docsUrl>http://supertuxkart.sourceforge.net/doxygen/?title=doxygen</docsUrl>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/edba4a5849ff756e767cba86641bea97ff5721fe/icons/supertuxkart.png</iconUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/supertuxkart.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description><![CDATA[
SuperTuxKart is a Free 3D kart racing game; we want to make the game fun more than we want to make it realistic. You can play with up to 4 friends on one PC, racing against each other or just try to beat the computer (a network multiplayer feature is planned).
Expand All @@ -31,7 +31,7 @@ You can do a single race against other karts, compete in one of several Grand Pr
<dependency id="vcredist2015" version="14.0.24215.20170201" />
<dependency id="chocolatey-core.extension" version="1.3.3" />
</dependencies>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/supertuxkart</packageSourceUrl>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/supertuxkart</packageSourceUrl>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
8 changes: 4 additions & 4 deletions automatic/supertuxkart/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
$packageArgs = @{
packageName = 'supertuxkart'
fileType = 'exe'
url = 'https://sourceforge.net/projects/supertuxkart/files/SuperTuxKart/0.9.3/supertuxkart-0.9.3-win32.exe/download'
url64 = 'https://sourceforge.net/projects/supertuxkart/files/SuperTuxKart/0.9.3/supertuxkart-0.9.3-win64.exe/download'
checksum = 'e560b3e62d0b4e8fab7639be72f058383c80adcd8ed0a11e9516f0c888876f6e'
checksum64 = '73978600ee03042eaaecae126f1ecd2239588340f0ce4325564364b4342e9dcf'
url = 'https://sourceforge.net/projects/supertuxkart/files/SuperTuxKart/1.0/SuperTuxKart%201.0%20installer-32bit.exe/download'
url64 = 'https://sourceforge.net/projects/supertuxkart/files/SuperTuxKart/1.0/SuperTuxKart%201.0%20installer-64bit.exe/download'
checksum = '9ba70c28bd024cdbb49062eef98543917272289953a7f3c17ed362f75b2dfa1d'
checksum64 = '194776863e2418d2ff70f4b13b16811f7d360fc9424d9e5f16bcca1a83798bda'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/S'
Expand Down
2 changes: 1 addition & 1 deletion automatic/supertuxkart/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $packageName = 'supertuxkart'

$installLocation = Get-AppInstallLocation $packageName
if (!$installLocation) {
$installLocation = gp HKCU:\Software\SuperTuxKart -ea 0 | select -Expand '(default)'
$installLocation = Get-ItemProperty HKCU:\Software\SuperTuxKart -ea 0 | Select-Object -Expand '(default)'
if (!$installLocation) { Write-Warning "Can't find install location"; return }
}

Expand Down

0 comments on commit 7b25dfc

Please sign in to comment.