Package Details: dolphin-emu-git 2409.r37.g6851ed73f4-1

Git Clone URL: https://aur.archlinux.org/dolphin-emu-git.git (read-only, click to copy)
Package Base: dolphin-emu-git
Description: A Gamecube / Wii emulator - git version
Upstream URL: https://dolphin-emu.org
Keywords: dolphin emu emulator game gamecube gui nintendo remote revolution triforce wii wiimote
Licenses: GPL-2.0-or-later
Conflicts: dolphin-emu
Provides: dolphin-emu
Submitter: None
Maintainer: dpeukert
Last Packager: dpeukert
Votes: 122
Popularity: 0.40
First Submitted: 2011-08-20 13:05 (UTC)
Last Updated: 2024-09-17 18:04 (UTC)

Dependencies (54)

Required by (3)

Sources (8)

Pinned Comments

dpeukert commented on 2020-04-10 12:34 (UTC) (edited on 2020-09-26 17:48 (UTC) by dpeukert)

The PKGBUILD for this package is hosted here (contributions are welcome!): https://gitlab.com/dpeukert/pkgbuilds/tree/main/dolphin-emu-git

Latest Comments

« First ‹ Previous 1 .. 15 16 17 18 19 20 21 22 23 24 25 .. 56 Next › Last »

HurricanePootis commented on 2021-08-04 01:50 (UTC)

@dpeukert OK, I thought you weren't available for it. Totally understandable! Sorry about the request.

dpeukert commented on 2021-08-03 21:55 (UTC)

@HurricanePootis: I have been without access to an internet connection for about two weeks and I've now been going through all the packages that became out-of-date in that period. This package is the only one that's left to fix and I plan on fixing it ASAP, I just haven't got around to it due to some unrelated work stuff, but I hope to have it done by Thursday.

dpeukert commented on 2021-07-31 18:15 (UTC)

@modnoob @purisame @rien333 @DocMAX @NovaMoon @chungy: Sorry about the delay, will be looking into fixing this tonight.

chungy commented on 2021-07-30 23:31 (UTC)

This should be enough to build Dolphin with the integrated GBA (the other option is -DUSE_MGBA=NO in the cmake step...):

diff --git a/PKGBUILD b/PKGBUILD
index 41a5bd0..58a0dc7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,8 +6,8 @@ _mainpkgname="$_projectname-emu"
 _noguipkgname="$_projectname-emu-nogui"
 pkgbase="$_mainpkgname-git"
 pkgname=("$pkgbase" "$_noguipkgname-git")
-pkgver='5.0.r13467.g79a234eff7'
-pkgrel='2'
+pkgver=5.0.r14762.gc86c02e46b
+pkgrel=1
 pkgdesc='A Gamecube / Wii emulator'
 _pkgdescappend=' - git version'
 arch=('x86_64' 'aarch64')
@@ -22,13 +22,18 @@ depends=(
 )
 makedepends=('cmake' 'git' 'python')
 optdepends=('pulseaudio: PulseAudio backend')
-source=("$pkgname::git+https://github.com/$_mainpkgname/$_projectname")
-sha256sums=('SKIP')
+source=("$pkgname::git+https://github.com/$_mainpkgname/$_projectname"
+        "git+https://github.com/mgba-emu/mgba.git")
+sha256sums=('SKIP'
+            'SKIP')

 _sourcedirectory="$pkgname"

 prepare() {
    cd "$srcdir/$_sourcedirectory/"
+   git submodule init Externals/mGBA
+   git config --local submodule.Externals/mGBA/mgba.url file://"${srcdir}/mgba"
+   git submodule update
    if [ -d 'build/' ]; then rm -rf 'build/'; fi
    mkdir 'build/'
 }

NovaMoon commented on 2021-07-30 15:19 (UTC) (edited on 2021-07-30 15:20 (UTC) by NovaMoon)

When i was building this from source i got the same error as from this pkgbuild. in the wiki there is this mention,

git submodule update --init Externals/mGBA

(as of July 2021, Dolphin integrates mGBA, this step is needed to pull it into the build)

after that i could build the emulator

DocMAX commented on 2021-07-24 08:11 (UTC) (edited on 2021-07-24 08:11 (UTC) by DocMAX)


CMake Error at Externals/mGBA/CMakeLists.txt:3 (add_subdirectory):
  The source directory

    /mnt/zeus/root/home/docmax/.cache/yay/dolphin-emu-git/src/dolphin-emu-git/Externals/mGBA/mgba

  does not contain a CMakeLists.txt file.


CMake Error at Externals/mGBA/CMakeLists.txt:6 (target_compile_options):
  Cannot specify compile options for target "mgba" which is not built by this
  project.


CMake Error at Externals/mGBA/CMakeLists.txt:13 (add_library):
  add_library cannot create ALIAS target "mGBA::mgba" because target "mgba"
  does not already exist.

rien333 commented on 2021-07-23 08:41 (UTC)

I get errors during the configure step, have been getting those for a few days now. Here's the configure/cmake log:

https://gist.github.com/rien333/112056e7f1c9b43394047c8097aa4c4b

sameer commented on 2021-07-23 03:23 (UTC)

The fix that makes mGBA work is in an issue on GitLab: https://gitlab.com/dpeukert/pkgbuilds/-/issues/28

modnoob commented on 2021-07-22 09:19 (UTC)

The build worked 3 days ago, but today i got this error when i try to build it -- Using static libmgba from Externals CMake Error at Externals/mGBA/CMakeLists.txt:3 (add_subdirectory): The source directory

/var/tmp/pamac-build-userdolphin-emu-git/src/dolphin-emu-git/Externals/mGBA/mgba

does not contain a CMakeLists.txt file.

CMake Error at Externals/mGBA/CMakeLists.txt:6 (target_compile_options): Cannot specify compile options for target "mgba" which is not built by this project.

CMake Error at Externals/mGBA/CMakeLists.txt:13 (add_library): add_library cannot create ALIAS target "mGBA::mgba" because target "mgba" does not already exist.

dpeukert commented on 2020-04-10 12:34 (UTC) (edited on 2020-09-26 17:48 (UTC) by dpeukert)

The PKGBUILD for this package is hosted here (contributions are welcome!): https://gitlab.com/dpeukert/pkgbuilds/tree/main/dolphin-emu-git