slackbuilds/games/RetroArch
Hunter Sezen cf9ee748e9 games/RetroArch: Patched from upstream + add optional dep.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2018-05-12 06:58:23 +07:00
..
README games/RetroArch: Patched from upstream + add optional dep. 2018-05-12 06:58:23 +07:00
README.SLACKWARE games/RetroArch: More README information. 2018-03-17 08:51:49 +07:00
RetroArch.SlackBuild games/RetroArch: Patched from upstream + add optional dep. 2018-05-12 06:58:23 +07:00
RetroArch.info games/RetroArch: Updated for version 1.7.3. 2018-05-04 16:18:39 +01:00
doinst.sh games/RetroArch: Added (Reference frontend for the libretro API). 2016-08-05 18:10:41 +01:00
qt.patch.gz games/RetroArch: Patched from upstream + add optional dep. 2018-05-12 06:58:23 +07:00
slack-desc games/RetroArch: Update HOMEPAGE. 2017-05-27 07:29:40 +07:00

README

RetroArch is the reference frontend for the libretro API. Popular
examples of implementations for this API includes videogame system
emulators and game engines, but also more generalized 3D programs.
These programs are instantiated as dynamic libraries. We refer to these
as "libretro cores".

libretro is an API that exposes generic audio/video/input callbacks. A
frontend for libretro (such as RetroArch) handles video output, audio
output, input and application lifecycle. A libretro core written in
portable C or C++ can run seamlessly on many platforms with very
little/no porting effort.

While RetroArch is the reference frontend for libretro, several other
projects have used the libretro interface to include support for
emulators and/or game engines. libretro is completely open and free for
anyone to use.

RetroArch will require at least one of the libretro cores to play any
games.

To build debugging symbols for RetroArch use:
  DEBUG=1 ./RetroArch.SlackBuild

If building debugging symbols asan can also be built:
  DEBUG=1 ASAN=1 ./RetroArch.SlackBuild

Optional dependencies:
  ffmpeg jack-audio-connection-kit libxkbcommon miniupnpc
  nvidia-cg-toolkit OpenAL python3 qt5 SDL2 vulkansdk wayland

Python3 support for shaders will need to be enabled with:
  PYTHON=1 ./RetroArch.SlackBuild

Note: Wayland support requires mesa to be rebuilt with Wayland support,
using the following configure parameters.

  --with-egl-platforms=x11,drm,wayland

Retroarch optionally supports using OpenGL ES 2 and OpenGL ES 3 instead
of OpenGL which will require video card and driver support. This can be
done by building RetroArch with:
  GLES=1 ./RetroArch.SlackBuild
or
  GLES3=1 ./RetroArch.SlackBuild

RetroArch optionally supports using Vulkan instead of OpenGL, this will
require the vulkansdk from SBo and support for your video card and
driver.

For additional notes, please see README.SLACKWARE.