Downloads:
70,797
Downloads of v 1.7.7.20190510:
831
Last Update:
10 May 2019
Package Maintainer(s):
Software Author(s):
- libretro developers
Tags:
retroarch games gaming emulation emulators- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
RetroArch
This is not the latest version of RetroArch available.
- 1
- 2
- 3
1.7.7.20190510 | Updated: 10 May 2019
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
70,797
Downloads of v 1.7.7.20190510:
831
Maintainer(s):
Software Author(s):
- libretro developers
RetroArch 1.7.7.20190510
This is not the latest version of RetroArch available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by libretro developers. The inclusion of libretro developers trademark(s), if any, upon this webpage is solely to identify libretro developers goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install RetroArch, run the following command from the command line or from PowerShell:
To upgrade RetroArch, run the following command from the command line or from PowerShell:
To uninstall RetroArch, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download retroarch --internalize --version=1.7.7.20190510 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade retroarch -y --source="'INTERNAL REPO URL'" --version="'1.7.7.20190510'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade retroarch -y --source="'INTERNAL REPO URL'" --version="'1.7.7.20190510'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install retroarch
win_chocolatey:
name: retroarch
version: '1.7.7.20190510'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'retroarch' do
action :install
source 'INTERNAL REPO URL'
version '1.7.7.20190510'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller retroarch
{
Name = "retroarch"
Version = "1.7.7.20190510"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'retroarch':
ensure => '1.7.7.20190510',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 10 May 2019.
RetroArch is a frontend for libretro, an open API which exposes the functionality of a game, emulator or certain kinds of multimedia applications. libretro started as libsnes with the SNES emulator bSNES, but libretro has since become a far broader API. RetroArch builds around the libretro API to provide a powerful interface for libretro cores.
Package Parameters
The following package parameters can be set:
/InstallDir:{path}
- Installation directory, defaults to{tools-location}\retroarch
(typicallyC:\tools\retroarch
)/InstallationPath:{path}
- Alias for/InstallDir
/DesktopShortcut
- Add shortcut for RetroArch to the desktop.
Notes
If a custom installation directory is used for RetroArch, shims will still be created for retroarch.exe
and retroarch_debug.exe
on the path so that RetroArch can be started from the command line as with prior versions of this package.
$packageName = 'retroarch'
$zip32 = 'RetroArch.7z'
$zip64 = 'RetroArch.7z'
if (Get-ProcessorBits -eq 64) { $zip = $zip64 } else { $zip = $zip32 }
Uninstall-ChocolateyZipPackage "$packageName" "$zip"
# Get package parameters
$pp = Get-PackageParameters
if ($null -eq $pp -or $pp.Count -eq 0) {
# Work around for choco#1479 https://github.com/chocolatey/choco/issues/1479
$toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$paramsFile = Join-Path (Split-Path -Parent $toolsPath) 'PackageParameters.xml'
if (Test-Path -Path $paramsFile) {
Write-Debug "Loading package parameters from $paramsFile"
$pp = Import-Clixml -Path $paramsFile
} else {
Write-Debug "No package parameters available; shims and desktop shortcut won't be removed if they were created"
$pp = @{}
}
}
$installDir = Join-Path $(Get-ToolsLocation) $packageName
if ($pp.InstallDir -or $pp.InstallationPath ) { $installDir = $pp.InstallDir + $pp.InstallationPath }
if ($installDir -ne $toolsPath) {
Uninstall-BinFile retroarch -path "$installDir\retroarch.exe"
Uninstall-BinFile retroarch_debug -path "$installDir\retroarch_debug.exe"
}
if ($pp.DesktopShortcut) {
$desktop = [System.Environment]::GetFolderPath("Desktop")
Remove-Item "$desktop\RetroArch.lnk" -ErrorAction SilentlyContinue -Force | Out-Null
}
Log in or click on link to see number of positives.
- retroarch.1.7.7.20190510.nupkg (c141e11b9f55) - ## / 62
- RetroArch.7z (5901d21fdc8d) - ## / 56
- RetroArch.7z (1b1707f895ca) - ## / 57
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
RetroArch 1.19.1 | 1389 | Monday, June 24, 2024 | Approved | |
RetroArch 1.15.0 | 19740 | Saturday, March 11, 2023 | Approved | |
RetroArch 1.14.0 | 1887 | Wednesday, December 14, 2022 | Approved | |
RetroArch 1.13.0 | 1030 | Sunday, November 20, 2022 | Approved | |
RetroArch 1.12.0 | 1139 | Tuesday, October 18, 2022 | Approved | |
RetroArch 1.11.1 | 790 | Wednesday, October 5, 2022 | Approved | |
RetroArch 1.11.0 | 485 | Saturday, October 1, 2022 | Approved | |
RetroArch 1.10.2.20220410 | 2407 | Monday, April 11, 2022 | Approved | |
RetroArch 1.10.2 | 1565 | Sunday, March 27, 2022 | Approved | |
RetroArch 1.10.0 | 1565 | Tuesday, January 25, 2022 | Approved | |
RetroArch 1.9.14 | 1582 | Monday, December 6, 2021 | Approved | |
RetroArch 1.9.13.20211113 | 1055 | Sunday, November 14, 2021 | Approved | |
RetroArch 1.9.13.20211109 | 650 | Tuesday, November 9, 2021 | Approved | |
RetroArch 1.9.13 | 332 | Monday, November 8, 2021 | Approved | |
RetroArch 1.9.12 | 886 | Monday, October 25, 2021 | Approved | |
RetroArch 1.9.11 | 789 | Wednesday, October 13, 2021 | Approved | |
RetroArch 1.9.10 | 856 | Monday, September 27, 2021 | Approved | |
RetroArch 1.9.9 | 972 | Friday, September 10, 2021 | Approved | |
RetroArch 1.9.7 | 890 | Monday, August 23, 2021 | Approved | |
RetroArch 1.9.6 | 1061 | Monday, July 26, 2021 | Approved | |
RetroArch 1.9.5.20210619 | 1219 | Saturday, June 19, 2021 | Approved | |
RetroArch 1.9.5 | 842 | Monday, June 14, 2021 | Approved | |
RetroArch 1.9.4.20210611 | 423 | Friday, June 11, 2021 | Approved | |
RetroArch 1.9.3 | 1075 | Monday, May 17, 2021 | Approved | |
RetroArch 1.9.1 | 1488 | Tuesday, March 30, 2021 | Approved | |
RetroArch 1.9.0 | 3162 | Friday, August 21, 2020 | Approved | |
RetroArch 1.8.9 | 1237 | Thursday, July 2, 2020 | Approved | |
RetroArch 1.8.8 | 860 | Monday, June 8, 2020 | Approved | |
RetroArch 1.8.7 | 780 | Friday, May 22, 2020 | Approved | |
RetroArch 1.8.6 | 774 | Friday, May 8, 2020 | Approved | |
RetroArch 1.8.5 | 965 | Sunday, April 5, 2020 | Approved | |
RetroArch 1.8.4 | 1181 | Saturday, January 25, 2020 | Approved | |
RetroArch 1.8.2 | 626 | Friday, January 3, 2020 | Approved | |
RetroArch 1.8.1 | 789 | Thursday, November 28, 2019 | Approved | |
RetroArch 1.8.0 | 702 | Sunday, October 27, 2019 | Approved | |
RetroArch 1.7.8.20190918 | 780 | Thursday, September 19, 2019 | Approved | |
RetroArch 1.7.8 | 465 | Thursday, September 12, 2019 | Approved | |
RetroArch 1.7.7.20190522 | 1154 | Wednesday, May 22, 2019 | Approved | |
RetroArch 1.7.7.20190510 | 831 | Friday, May 10, 2019 | Approved | |
RetroArch 1.7.7 | 397 | Tuesday, May 7, 2019 | Approved | |
RetroArch 1.7.6 | 664 | Friday, March 22, 2019 | Approved | |
RetroArch 1.7.5.20181214 | 743 | Wednesday, December 19, 2018 | Approved | |
RetroArch 1.7.5 | 696 | Friday, October 12, 2018 | Approved | |
RetroArch 1.7.4 | 612 | Thursday, September 13, 2018 | Approved | |
RetroArch 1.7.2 | 833 | Friday, April 27, 2018 | Approved | |
RetroArch 1.7.1 | 674 | Tuesday, March 6, 2018 | Approved | |
RetroArch 1.7.0 | 670 | Monday, January 8, 2018 | Approved | |
RetroArch 1.6.9 | 537 | Sunday, November 26, 2017 | Approved | |
RetroArch 1.6.7 | 713 | Tuesday, August 22, 2017 | Approved | |
RetroArch 1.6.6 | 452 | Friday, August 18, 2017 | Approved | |
RetroArch 1.6.0 | 674 | Saturday, June 10, 2017 | Approved | |
RetroArch 1.5.0 | 676 | Monday, March 20, 2017 | Approved | |
RetroArch 1.4.1 | 502 | Friday, March 10, 2017 | Approved | |
RetroArch 1.3.6 | 789 | Sunday, August 28, 2016 | Approved | |
RetroArch 1.3.4 | 485 | Monday, May 16, 2016 | Approved |
GPLv3
-
- chocolatey (≥ 0.10.8)
Ground Rules:
- This discussion is only about RetroArch and the RetroArch package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or RetroArch, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.