An open API service indexing awesome lists of open source software.

https://github.com/ericoporto/ags-choco-pkg

Adventure Game Studio Chocolatey package
https://github.com/ericoporto/ags-choco-pkg

adventure-game-studio adventuregamestudio ags chocolatey

Last synced: 9 months ago
JSON representation

Adventure Game Studio Chocolatey package

Awesome Lists containing this project

README

          

# Adventure Game Studio Chocolatey package

[![Build status](https://ci.appveyor.com/api/projects/status/2b3lo589gc4imbah/branch/main?svg=true)](https://ci.appveyor.com/project/ericoporto/ags-choco-pkg/branch/main)
[![Chocolatey package](https://repology.org/badge/version-for-repo/chocolatey/adventuregamestudio.svg)](https://repology.org/project/adventuregamestudio/versions)

![](cinst_ags.gif)

Adventure Game Studio Chocolatey package, to install you will need Chocolatey
installed. Then right click either cmd.exe or powershell and select
**`Run as administrator`**, and on the command prompt type:

cinst ags

To uninstall, type

choco uninstall ags

## Install Path

AGS will be installed in the Program Files. You can find it by creating a
variable like below.

SET AGS_PATH=%ProgramFiles(X86)%\Adventure Game Studio 3.5.1\
IF NOT DEFINED ProgramFiles(x86) SET AGS_PATH=%ProgramFiles%\Adventure Game Studio 3.5.1\

## Building this package

If you want to build this package yourself, in a windows environment with git
and chocolatey installed, use the commands below

git clone https://github.com/ericoporto/ags-choco-pkg.git
cd ags-choco-pkg
choco pack
choco install ags -s .,chocolatey

If you are building on your PC or you want to use a specific version, you can specify a version adding `--version VERSIONNUMBER` to the command above.

To uninstall, on the same dir, just type

choco uninstall ags -s .

## Pushing a package to chocolatey

The text below is so I can remember how to do this.
```
choco apikey --key YOURAPIKEYHERE --source https://push.chocolatey.org/
choco push ags*.nupkg --source https://push.chocolatey.org/
```