Package Details: dolphin-emu-git 5.0.r21606.g8ac22378a1-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: 120
Popularity: 0.159030
First Submitted: 2011-08-20 13:05 (UTC)
Last Updated: 2024-05-28 23:55 (UTC)

Dependencies (44)

Required by (3)

Sources (7)

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 .. 6 7 8 9 10 11 12 13 14 15 16 .. 53 Next › Last »

Yamashiro commented on 2023-07-01 06:51 (UTC)

Getting the same build failure in the prepare stage.

Also, according to the bug reports FS#78926 and FS#78628 the PKGBUILD should probably explicitly use the !lto option.

Riedler commented on 2023-06-30 21:15 (UTC) (edited on 2023-06-30 21:16 (UTC) by Riedler)

build failure:

==> Starting prepare()...
patching file CMakeLists.txt
Hunk #1 FAILED at 780.
1 out of 1 hunk FAILED -- saving rejects to file CMakeLists.txt.rej
==> ERROR: A failure occurred in prepare().
    Aborting...
error: failed to build 'dolphin-emu-git-5.0.r19742.g7a2352f90c-1'

Score_Under commented on 2023-06-26 07:45 (UTC)

also depends on qt6-svg:

CMake Error at Source/Core/DolphinQt/CMakeLists.txt:16 (find_package):
  Found package configuration file:

    /usr/lib/cmake/Qt6/Qt6Config.cmake

  but it set Qt6_FOUND to FALSE so package "Qt6" is considered to be NOT
  FOUND.  Reason given by package:

  Failed to find required Qt component "Svg".

  Expected Config file at "/usr/lib/cmake/Qt6Svg/Qt6SvgConfig.cmake" does NOT
  exist



  Configuring with --debug-find-pkg=Qt6Svg might reveal details why the
  package was not found.

  Configuring with -DQT_DEBUG_FIND_PACKAGE=ON will print the values of some
  of the path variables that find_package uses to try and find the package.

dpeukert commented on 2023-05-30 12:49 (UTC)

I've removed the mbedtls patch, as it's been merged upstream.

Compile3440 commented on 2023-05-30 01:03 (UTC)

The NEW patch is causing me issues. The previous one was fine, so long as you just got the git version of libmgba. I have to comment out the new line for it to work.

lgaggini commented on 2023-05-27 17:04 (UTC) (edited on 2023-05-27 17:05 (UTC) by lgaggini)

The build is currently broken because of this:

https://github.com/dolphin-emu/dolphin/pull/11847

So the patch of the pull request is required and also the package mbedtls2 is required (if not installed), mbedtls package installs mbedtls version 3.

kylon commented on 2023-05-11 15:47 (UTC) (edited on 2023-05-11 15:49 (UTC) by kylon)

@dpeukert

updated PKGBUILD to build latest dolphin

cleaned up prepare to be readable

fix build with USE_MGBA=ON, always build a static libmgba from dolphin submodule (also fix conflict with libmgba-git and latest mgba-git package)

disable autoupdate, since this is arch package, it is useless

--- PKGBUILD    2023-04-07 12:36:03.000000000 +0200
+++ dolphin-emu-git/PKGBUILD    2023-05-11 17:36:25.024538054 +0200
@@ -6,15 +6,15 @@
 _noguipkgname="$_projectname-emu-nogui"
 pkgbase="$_mainpkgname-git"
 pkgname=("$pkgbase" "$_noguipkgname-git")
-pkgver='5.0.r19176.gaaedc2827d'
-pkgrel='1'
+pkgver=5.0.r19365.g33c4e84f35
+pkgrel=1
 pkgdesc='A Gamecube / Wii emulator'
 _pkgdescappend=' - git version'
 arch=('x86_64' 'aarch64')
 url="https://$_mainpkgname.org"
 license=('GPL2')
 depends=(
-   'alsa-lib' 'bluez-libs' 'cubeb' 'enet' 'hidapi' 'libevdev' 'libgl' 'libmgba'
+   'alsa-lib' 'bluez-libs' 'cubeb' 'enet' 'hidapi' 'libevdev' 'libgl'
    'libpulse' 'libspng' 'libx11' 'libxi' 'libxrandr' 'lzo' 'mbedtls' 'minizip-ng'
    'pugixml' 'qt6-base' 'sfml' 'zlib'
    'libavcodec.so' 'libavformat.so' 'libavutil.so' 'libcurl.so' 'libfmt.so'
@@ -27,17 +27,26 @@
    "$pkgname-implot::git+https://github.com/epezent/implot.git"
    "$pkgname-vma::git+https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git"
    "$pkgname-zlibng::git+https://github.com/zlib-ng/zlib-ng.git"
+   "$pkgname-mgba::git+https://github.com/mgba-emu/mgba.git"
    'minizip-ng.diff'
 )
 sha512sums=('SKIP'
             'SKIP'
             'SKIP'
             'SKIP'
+            'SKIP'
             'b469597fe9b4e9be6ae9ab0330fe5e3d6b944a73505775ff75f9895ae4843768f3815d4b5b8e227d6d2e87c3f4882d6d7262f9df85be0aaddf46730a7afa16dd')

 _sourcedirectory="$pkgname"

 prepare() {
+   declare -A submodules=(
+       [implot]="Externals/implot/implot"
+       [vma]="Externals/VulkanMemoryAllocator"
+       [zlibng]="Externals/zlib-ng/zlib-ng"
+       [mgba]="Externals/mGBA/mgba"
+   )
+
    cd "$srcdir/$_sourcedirectory/"
    if [ -d 'build/' ]; then rm -rf 'build/'; fi
    mkdir 'build/'
@@ -45,23 +54,13 @@
    # Fix minizip-ng name for Arch
    patch --forward -p1 < "$srcdir/minizip-ng.diff"

-   # Provide implot submodule
-   _implotpath='Externals/implot/implot'
-   git submodule init "$_implotpath"
-   git config "submodule.$_implotpath.url" "$srcdir/$pkgname-implot/"
-   git -c protocol.file.allow=always submodule update "$_implotpath"
-
-   # Provide vma submodule
-   _vmapath='Externals/VulkanMemoryAllocator'
-   git submodule init "$_vmapath"
-   git config "submodule.$_vmapath.url" "$srcdir/$pkgname-vma/"
-   git -c protocol.file.allow=always submodule update "$_vmapath"
-
-   # Provide zlib-ng submodule
-   _zlibngpath='Externals/zlib-ng/zlib-ng'
-   git submodule init "$_zlibngpath"
-   git config "submodule.$_zlibngpath.url" "$srcdir/$pkgname-zlibng/"
-   git -c protocol.file.allow=always submodule update "$_zlibngpath"
+   for submod in "${!submodules[@]}"; do
+       path="${submodules[$submod]}"
+
+       git submodule init "$path"
+       git config "submodule.$path.url" "$srcdir/$pkgname-$submod/"
+       git -c protocol.file.allow=always submodule update "$path"
+   done
 }

 pkgver() {
@@ -72,12 +71,14 @@
 build() {
    cd "$srcdir/$_sourcedirectory/"
    cmake -S '.' -B 'build/' -G Ninja \
-       -DCMAKE_BUILD_TYPE=None \
+       -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_INSTALL_PREFIX='/usr' \
        -DDISTRIBUTOR=archlinux.org \
        -DENABLE_TESTS=OFF \
        -DUSE_SHARED_ENET=ON \
        -DUSE_RETRO_ACHIEVEMENTS=OFF \
+       -DENABLE_AUTOUPDATE=OFF \
+       -DCMAKE_DISABLE_FIND_PACKAGE_LIBMGBA=True \
        -Wno-dev
    cmake --build 'build/'
 }

creepergd commented on 2023-04-27 17:50 (UTC)

Something with this package is that if you want the absolute latest version of dolphin and you don't really like waiting multiple weeks per update, you can replace the package version in the PKGBUILD and build the latest one, it's pretty nice.

infirit commented on 2023-04-05 16:36 (UTC)

Actually @HurricanePootis that is exactly what should be done for the rcheevos submodule. It literally does nothing yet and many more pull requests are needed to properly implement RetroAchievements.