Skip to content

Commit

Permalink
AU: 1 updated - powder-toy
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 10, 2019
1 parent b73a39e commit 4eddcae
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
3 changes: 2 additions & 1 deletion automatic/powder-toy/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# ![The Powder Toy Changelog](https://img.shields.io/badge/The%20Powder%20Toy-Package%20Changelog-blue.svg?style=for-the-badge)

## UPCOMING
## Version: 93.3 (2019-01-10)
- Initial implementation of the powder-toy chocolatey package (requested by @FranklinYu : https://github.com/chocolatey/chocolatey-package-requests/issues/495)

6 changes: 3 additions & 3 deletions automatic/powder-toy/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ The embedded software have been downloaded from the listed download
location on <https://powdertoy.co.uk/Download/Platforms.html>
and can be verified by doing the following:

1. Download the following <>
1. Download the following <https://powdertoy.co.uk/Download/powder-win32.zip>
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:
checksum:
checksum type: sha256
checksum: 59053F5F4594FA97DE9234E3D54ED8216D7A8CCF4E56C903E100788FD380C955

The file 'LICENSE.txt' has been obtained from <https://github.com/ThePowderToy/The-Powder-Toy/blob/master/LICENSE>
18 changes: 10 additions & 8 deletions automatic/powder-toy/powder-toy.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>powder-toy</id>
<version>0.0</version>
<version>93.3</version>
<packageSourceUrl>https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/powder-toy</packageSourceUrl>
<owners>AdmiringWorm</owners>
<title>The Powder Toy</title>
Expand All @@ -20,22 +20,24 @@
<tags>powder-toy game foss cross-platform sandbox simulation</tags>
<summary>Create landscapes and cities ... then blow them up!</summary>
<!-- Do not touch the description here in the nuspec file. Description is imported during update from the Readme.md file -->
<description>
Have you ever wanted to blow something up? Or maybe you always dreamt of operating an atomic power plant? Do you have a will to develop your own CPU? The Powder Toy lets you to do all of these, and even more!
<description><![CDATA[Have you ever wanted to blow something up? Or maybe you always dreamt of operating an atomic power plant? Do you have a will to develop your own CPU? The Powder Toy lets you to do all of these, and even more!
The Powder Toy is a free physics sandbox game, which simulates air pressure and velocity, heat, gravity and a countless number of interactions between different substances! The game provides you with various building materials, liquids, gases and electronic components which can be used to construct complex machines, guns, bombs, realistic terrains and almost anything else. You can then mine them and watch cool explosions, add intricate wirings, play with little stickmen or operate your machine. You can browse and play thousands of different saves made by the community or upload your own – we welcome your creations!
There is a Lua API – you can automate your work or even make plugins for the game. The Powder Toy is free and the source code is distributed under the GNU General Public License, so you can modify the game yourself or help with development.
## Features
- **Sculpt:** Create landscapes and cities ... then blow them up!
- **Browse and search** through thousands of saves created by the community, upload your own!
- **Create:** Build needlessly complex machines to do simple tasks ... the blow them up!
</description>
<releaseNotes>
[Software Changelog](https://powdertoy.co.uk/Download/Changelog.html)
[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/powder-toy/Changelog.md)
</releaseNotes>
## Notes
- The game can be launched from terminal by typing in: `Powder`
]]></description>
<releaseNotes>[Software Changelog](https://powdertoy.co.uk/Download/Changelog.html)
[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/powder-toy/Changelog.md)</releaseNotes>
<dependencies />
</metadata>
<files>
Expand Down
4 changes: 2 additions & 2 deletions automatic/powder-toy/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'zip'
file = "$toolsPath\"
file = "$toolsPath\powder-win32.zip"
destination = "$toolsPath"
}

Get-ChocolateyUnzip @packageArgs
rm $packageArgs['file'] -ea 0
Remove-Item $packageArgs['file'] -ea 0

0 comments on commit 4eddcae

Please sign in to comment.