Package Details: rpcs3-git 0.0.31.r16375.90b6912daa-1

Git Clone URL: https://aur.archlinux.org/rpcs3-git.git (read-only, click to copy)
Package Base: rpcs3-git
Description: A Sony PlayStation 3 emulator
Upstream URL: https://github.com/RPCS3/rpcs3
Licenses: GPL2
Conflicts: rpcs3
Provides: rpcs3
Submitter: alucryd
Maintainer: hcorion
Last Packager: hcorion
Votes: 73
Popularity: 1.52
First Submitted: 2014-08-14 11:04 (UTC)
Last Updated: 2024-04-24 06:18 (UTC)

Dependencies (31)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 .. 23 24 25 26 27 28 29 30 31 32 33 Next › Last »

hcorion commented on 2017-05-08 23:45 (UTC) (edited on 2017-05-09 01:08 (UTC) by hcorion)

Why the new rpcs3.sh? Why would you be cd-ing to the /opt directory? Just copy the binary into the bin folder like it was previously. I don't want my root directory spammed with unnecessary folders. EDIT: I just realized other AUR packages install to /opt/, but it doesn't make sense for rpcs3, it should be just install to /usr/bin Also, it plain just doesn't work, the exec rpcs3 doesn't work, because the rpcs3 binary is in /opt/rpcs3, not in the path. @alucryd Would you be interested in accepting myself as a co-maintainer? I'm sometimes pretty up-to-date with RPCS3 developments.

C0rn3j commented on 2017-05-08 22:13 (UTC)

> also what's the deal with all that stuff in /usr/local/lib64/ ? Thanks! Idiotic symlink to workaround a problem I had with custom WINE prefix. Removed it and now it builds.

alucryd commented on 2017-05-08 18:51 (UTC)

You obviously have some llvm still installed, also what's the deal with all that stuff in /usr/local/lib64/ ?

C0rn3j commented on 2017-05-08 18:46 (UTC)

Uninstalled llvm, tried again but it failed. https://paste.c0rn3j.com/?f0c09bfc36317b55#9n/mMz0TPYGZW087npqVsTeZyuexW6tyNBQZkJGzDoA=

alucryd commented on 2017-05-08 18:31 (UTC)

Uninstall llvm or build in a clean chroot.

C0rn3j commented on 2017-05-08 13:19 (UTC)

Won't build https://paste.c0rn3j.com/?38f1dc870ce3d01f#oebO09WbtttrLFI3VHQjzGXjg/sUurYv6z5JXgquLsE=

alucryd commented on 2017-05-08 12:26 (UTC)

You're supposed to use an external pastebin service for that. Just updated the PKGBUILD, also you can find nightly builds one of my unofficial repos: https://pkgbuild.com/~alucryd/.

deathrashergr commented on 2017-05-06 21:17 (UTC)

I am not sure about the rules of the AUR and posting code on comments but for anyone in a hurry (like myself) I managed to build the rpcs3-git package successfully by adding the hidapi dependency to the PKGBUILD. The new PKGBUILD contents: # Maintainer: Maxime Gauduin <alucryd@archlinux.org> pkgname=rpcs3-git pkgver=0.0.2.r194.b9ebf595e pkgrel=1 pkgdesc='A Sony PlayStation 3 emulator' arch=('x86_64') url='https://github.com/RPCS3/rpcs3' license=('GPL2') depends=('gcc-libs' 'glew' 'glibc' 'glu' 'libgl' 'libpng' 'libx11' 'openal' 'wxgtk' 'yaml-cpp' 'zlib' 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'libncursesw.so' 'libswscale.so' 'libswresample.so') makedepends=('boost' 'cereal' 'cmake' 'git' 'llvm') provides=('rpcs3') conflicts=('rpcs3') source=('git+https://github.com/RPCS3/rpcs3.git' 'git+https://github.com/RPCS3/common.git' 'git+https://github.com/RPCS3/pugixml.git#commit=f205aaf' 'git+https://github.com/RPCS3/rsx-debugger.git#commit=3b11b96' 'git+https://github.com/RPCS3/rsx_program_decompiler.git#commit=de3b205' 'git+https://github.com/kobalicek/asmjit.git#commit=b0dad1a' 'git+https://github.com/Microsoft/GSL.git#commit=fc5fce4' 'git+https://github.com/KhronosGroup/glslang.git#commit=2921e0c' 'git+https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers.git#commit=64d375f' 'git+https://github.com/signal11/hidapi.git') sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP') pkgver() { cd rpcs3 echo "$(git describe --tags | sed 's/^v//; s/-/.r/; s/-g/./')" } prepare() { cd rsx_program_decompiler git submodule init common git config submodule.common.url ../common git submodule update common cd ../rpcs3 git submodule init 3rdparty/{GSL,pugixml,hidapi} asmjit rsx{-debugger,_program_decompiler} Vulkan/{glslang,Vulkan-LoaderAndValidationLayers} git config submodule.asmjit.url ../asmjit git config submodule.GSL.url ../GSL git config submodule.pugixml.url ../pugixml git config submodule.rsx-debugger.url ../rsx-debugger git config submodule.rsx_program_decompiler.url ../rsx_program_decompiler git config submodule.glslang.url ../glslang git config submodule.Vulkan-LoaderAndValidationLayers ../Vulkan-LoaderAndValidationLayers git config submodule.hidapi ../hidapi git submodule update 3rdparty/{GSL,pugixml,hidapi} asmjit rsx_program_decompiler Vulkan/{glslang,Vulkan-LoaderAndValidationLayers} if [[ -d build ]]; then rm -rf build fi mkdir build } build() { cd rpcs3/build cmake .. \ -DCMAKE_BUILD_TYPE='Release' \ -DCMAKE_INSTALL_PREFIX='/usr' \ -DCMAKE_EXE_LINKER_FLAGS='-ldl -lyaml-cpp' \ -DCMAKE_SKIP_RPATH='ON' \ -DUSE_SYSTEM_FFMPEG='ON' \ -DUSE_SYSTEM_LIBPNG='ON' make } package() { cd rpcs3/build install -dm 755 "${pkgdir}"/usr/bin install -m 755 bin/rpcs3 "${pkgdir}"/usr/bin/ } # vim: ts=2 sw=2 et:

hcorion commented on 2017-05-04 21:21 (UTC) (edited on 2017-05-04 21:21 (UTC) by hcorion)

This needs an update, RPCS3 now has a submodule in 3rdparty/hidapi, see bug here: https://github.com/RPCS3/rpcs3/issues/2751

MrTimscampi commented on 2017-04-30 15:08 (UTC)

@atamax: It's a known bug upstream. The LLVM currently works only on the NVidia proprietary driver.