Skip to content

Commit

Permalink
Package download superburgertime
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
tunisiano187 committed Sep 12, 2024
1 parent ea8e598 commit ef228db
Show file tree
Hide file tree
Showing 6 changed files with 115 additions and 0 deletions.
34 changes: 34 additions & 0 deletions automatic/superburgertime/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[![](https://img.shields.io/chocolatey/v/superburgertime?color=green&label=superburgertime)](https://chocolatey.org/packages/superburgertime) [![](https://img.shields.io/chocolatey/dt/superburgertime)](https://chocolatey.org/packages/superburgertime)

## Super Burger Time (Portable)

![screen shot of Super Burger Time](http://pjsfreeware.synthasite.com/resources/burger.png)

Burgertime clone

Move over the ingredients which will drop down to the next level until they reach the plate at the bottom. You must avoid the baddies (sausages/eggs/tomatoes) or stun them with pepper for a short while.

Now with added Joystick support

This game is freeware, if you have been sold it then you have been ripped off.
more games at http://pjsfreeware.synthasite.com/

A burgertime clone

Move over the ingredients which will drop down to the next level until they reach the plate at the bottom. You must avoid the baddies (sausages/eggs/tomatoes) or stun them with pepper for a short while

Keys:
* CTRL Throw pepper to stun enemy for a short time
* ARROW keys for movement

last update 24/04/2012 gm8

**[PACKAGE NOTES](https://github.com/bcurran3/ChocolateyPackages/blob/master/superburgertime/readme.md)**

#### [choco://superburgertime](choco://superburgertime)
To use choco:// protocol URLs, install [(unofficial) choco:// Protocol support ](https://chocolatey.org/packages/choco-protocol-support)

### Package-specific issue
If this package isn't up-to-date for some days, [Create an issue](https://github.com/tunisiano187/Chocolatey-packages/issues/new/choose)

Support the package maintainer and [![Patreon](https://cdn.jsdelivr.net/gh/tunisiano187/Chocolatey-packages@d15c4e19c709e7148588d4523ffc6dd3cd3c7e5e/icons/patreon.png)](https://www.patreon.com/bePatron?u=39585820)
42 changes: 42 additions & 0 deletions automatic/superburgertime/superburgertime.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>superburgertime</id>
<version>2013.07.30</version>
<title>Super Burger Time (Portable)</title>
<authors>PJ Crossley</authors>
<owners>bcurran3</owners>
<projectUrl>http://pjsfreeware.synthasite.com/</projectUrl>
<iconUrl>http://pjsfreeware.synthasite.com/resources/Rendered5.jpg</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>![screen shot of Super Burger Time](http://pjsfreeware.synthasite.com/resources/burger.png)

Burgertime clone

Move over the ingredients which will drop down to the next level until they reach the plate at the bottom. You must avoid the baddies (sausages/eggs/tomatoes) or stun them with pepper for a short while.

Now with added Joystick support

This game is freeware, if you have been sold it then you have been ripped off.
more games at http://pjsfreeware.synthasite.com/

A burgertime clone

Move over the ingredients which will drop down to the next level until they reach the plate at the bottom. You must avoid the baddies (sausages/eggs/tomatoes) or stun them with pepper for a short while

Keys:
* CTRL Throw pepper to stun enemy for a short time
* ARROW keys for movement

last update 24/04/2012 gm8

**[PACKAGE NOTES](https://github.com/bcurran3/ChocolateyPackages/blob/master/superburgertime/readme.md)**</description>
<summary>PJ Crossley's remake of the classic Burger Time game.</summary>
<copyright>PJ Crossley</copyright>
<tags>pjcrossley burgertime burger time retro game portable</tags>
<packageSourceUrl>https://github.com/bcurran3/ChocolateyPackages/tree/master/superburgertime</packageSourceUrl>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>
7 changes: 7 additions & 0 deletions automatic/superburgertime/tools/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
==================== Crozza Games LICENSE.TXT ====================

This game by PJ Crossley/Crozza Games is freely distributable copyrighted freeware.

This license is stated at http://pjsfreeware.synthasite.com/ and says "Feel free to distribute any of my free games on your site as long as you do not charge for them and a link to my site would be nice."

==================== Crozza Games LICENSE.TXT ====================
5 changes: 5 additions & 0 deletions automatic/superburgertime/tools/VERIFICATION.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
==================== Crozza Games VERIFICATION.TXT ====================

This binary was directly downloaded and packaged up by bcurran3 from http://pjsfreeware.synthasite.com/. Checksums were manually created.

==================== Crozza Games VERIFICATION.TXT ====================
21 changes: 21 additions & 0 deletions automatic/superburgertime/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
$packageName = 'superburgertime'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = "$toolsDir\super_burger.zip"
$checksum = '7A900B0905906812544B37855BD14D5229E5D60AFDE7DC3A40C214FDFFE8E8BA'
$Shortcut = 'Super Burger Time.lnk'
$ProgramEXE = 'super_burger8.exe'

$packageArgs = @{
packageName = $packageName
unzipLocation = $toolsDir
fileType = 'ZIP'
url = $url
checksum = $checksum
checksumType = 'sha256'
}

Install-ChocolateyZipPackage @packageArgs

Install-ChocolateyShortcut -shortcutFilePath "$env:Public\Desktop\$Shortcut" -targetPath "$toolsDir\$ProgramEXE" -WorkingDirectory "$toolsDir"
Install-ChocolateyShortcut -shortcutFilePath "$env:ProgramData\Microsoft\Windows\Start Menu\Programs\$Shortcut" -targetPath "$toolsDir\$ProgramEXE"
Remove-Item $url | out-null
6 changes: 6 additions & 0 deletions automatic/superburgertime/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$packageName = 'superburgertime'
$Shortcut = 'Super Burger Time.lnk'

remove-item "$env:Public\Desktop\$Shortcut" -Force -ErrorAction 'SilentlyContinue'
remove-item "$env:ProgramData\Microsoft\Windows\Start Menu\Programs\$Shortcut" -Force -ErrorAction 'SilentlyContinue'

0 comments on commit ef228db

Please sign in to comment.