Package Details: retroarch-git 1.8.7.r89.7cbb79277d-1

Git Clone URL: https://aur.archlinux.org/retroarch-git.git (read-only, click to copy)
Package Base: retroarch-git
Description: Reference frontend for the libretro API (Git-latest)
Upstream URL: http://www.libretro.com/
Keywords: emulator games libretro retroarch
Licenses: GPL
Groups: libretro
Conflicts: retroarch
Provides: retroarch
Submitter: Themaister
Maintainer: parkerlreed
Last Packager: parkerlreed
Votes: 78
Popularity: 0.000000
First Submitted: 2012-04-22 13:08 (UTC)
Last Updated: 2020-05-22 18:10 (UTC)

Dependencies (37)

Required by (11)

Sources (3)

Pinned Comments

ProfessorKaos64 commented on 2016-09-20 15:28 (UTC) (edited on 2016-10-21 15:28 (UTC) by ProfessorKaos64)

It is suggested you install retroarch-assets-xmb-git over retroarch-assets-xmb, as the community packages is currently missing assets.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

ProfessorKaos64 commented on 2017-04-22 01:48 (UTC)

Fixed build errors. Nothing I saw to do with libass. If you have continued issues, let me know.

ProfessorKaos64 commented on 2017-04-22 01:36 (UTC)

aaronp, can you elaborte? I see some other build errors I need to take a look at as well.

GeneralFailer commented on 2017-04-19 12:39 (UTC)

libass dependency is hindering system update.

ProfessorKaos64 commented on 2017-01-12 14:28 (UTC)

Thank you, I will get to this today.

aaronp commented on 2017-01-12 01:54 (UTC) (edited on 2017-01-12 01:57 (UTC) by aaronp)

PKGBUILD needs an update to build. EDIT: v2 - forgot SRCINFO. From ea7f86e79f3a9319f7530fd13697a350db580cec Mon Sep 17 00:00:00 2001 From: Aaron Paden <aaronbpaden@gmail.com> Date: Wed, 11 Jan 2017 19:51:48 -0600 Subject: [PATCH] Use new dsp_filters path. --- .SRCINFO | 4 +++- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a82e382..a96653d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,8 @@ +# Generated by mksrcinfo v8 +# Thu Jan 12 01:55:18 UTC 2017 pkgbase = retroarch-git pkgdesc = Reference frontend for the libretro API (Git-latest) - pkgver = 1.3.6.r1588.2c0d8e8 + pkgver = 1.3.6.r3731.404e60f7e pkgrel = 1 url = http://www.libretro.com/ install = retroarch-git.install diff --git a/PKGBUILD b/PKGBUILD index 8768278..fceafa8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,7 +10,7 @@ # 'git+https://github.com/KhronosGroup/SPIRV-Cross.git#commit=5c24d99') pkgname=retroarch-git -pkgver=1.3.6.r1588.2c0d8e8 +pkgver=1.3.6.r3731.404e60f7e pkgrel=1 #epoch=1 _gitname=RetroArch @@ -70,7 +70,7 @@ build() { --disable-oss make make -C gfx/video_filters - make -C audio/audio_filters + make -C libretro-common/audio/dsp_filters } @@ -82,7 +82,7 @@ package() { install -dm 755 "${pkgdir}"/usr/lib/retroarch/filters/{audio,video} install -m 644 gfx/video_filters/*.{filt,so} "${pkgdir}"/usr/lib/retroarch/filters/video/ - install -m 644 audio/audio_filters/*.{dsp,so} "${pkgdir}"/usr/lib/retroarch/filters/audio/ + install -m 644 libretro-common/audio/dsp_filters/*.{dsp,so} "${pkgdir}"/usr/lib/retroarch/filters/audio/ } -- 2.11.0

GeneralFailer commented on 2017-01-10 19:40 (UTC)

Crashes with "make: *** audio/audio_filters: No such file or directory. Stop." for me. Apparently it was moved to libretro-common.

ProfessorKaos64 commented on 2016-12-12 14:41 (UTC) (edited on 2016-12-12 14:42 (UTC) by ProfessorKaos64)

@parkerlreed No, that is how modules are prepared. https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git_Submodules

parkerlreed commented on 2016-12-09 23:33 (UTC)

Is it just me or is it weird having the external sources cloned as part of the PKGBUILD source AND prepare()? It seems to pull twice making one of them redundant. Could just leave them in the prepare() function and remove them from the source array.

ProfessorKaos64 commented on 2016-09-26 17:29 (UTC)

@parkerlreed, for consistency. I've rethought this, and you are correct, this should not be done. I'll update the PKBUILD to not use this behavior.

parkerlreed commented on 2016-09-25 17:45 (UTC)

Why are the paths being hardcoded? Just consistency for the packages? This breaks the online updater completely.