Package Details: melonds 0.9.5-6

Git Clone URL: https://aur.archlinux.org/melonds.git (read-only, click to copy)
Package Base: melonds
Description: DS emulator, sorta
Upstream URL: http://melonds.kuribo64.net/
Licenses: GPL3
Submitter: ckuiper
Maintainer: hcorion (HTV04)
Last Packager: hcorion
Votes: 25
Popularity: 0.87
First Submitted: 2021-01-18 02:20 (UTC)
Last Updated: 2024-06-23 05:18 (UTC)

Latest Comments

1 2 Next › Last »

hcorion commented on 2024-06-23 04:42 (UTC)

@dansecob fix applied!

@mifori libslirp is used for online play.

dansecob commented on 2024-06-18 18:11 (UTC)

This PKGBUILD relies on make as the CMake backend, so it fails on any system that configures CMake with ninja as the backend. This patch replaces make calls with CMake calls, to be backend agnostic.

@@ -25,11 +25,11 @@ build() {
   cmake ../melonDS \
     -DCMAKE_BUILD_TYPE=Release \
     -DCMAKE_INSTALL_PREFIX="/usr"
-  make VERBOSE=ON
+  cmake --build .
 }

 package() {
   cd build

-  make DESTDIR="${pkgdir}" install
+  DESTDIR="${pkgdir}" cmake --install .
 }

mifori commented on 2024-05-28 22:00 (UTC)

Why does this depend on libslirp?

jmcb commented on 2023-11-20 18:09 (UTC)

git url is now https://github.com/melonDS-emu/melonDS

HTV04 commented on 2022-11-10 23:09 (UTC)

@micwoj92 Updated, thanks!

micwoj92 commented on 2022-11-07 07:35 (UTC)

Missing dependency qt5-multimedia

micwoj92 commented on 2022-07-19 15:07 (UTC)

This has already been fixed upstream https://github.com/Arisotura/melonDS/commit/4cc34121b0db2cf77541014271af8d79fed35f26

you can fix it yourself by adding git cherry-pick -n 4cc34121b0db2cf77541014271af8d79fed35f26 before the build step

atlasRequiem commented on 2022-07-19 14:39 (UTC) (edited on 2022-07-19 14:53 (UTC) by atlasRequiem)

Hi, I'm trying to install this package but for some reason the build is failing with

/.cache/yay/melonds/src/melonDS/src/teakra/src/processor.cpp:1:
/.cache/yay/melonds/src/melonDS/src/teakra/src/interpreter.h: In member function ‘void Teakra::Interpreter::CodebookSearch(u16, u16, u16, CbsCond)’:
/.cache/yay/melonds/src/melonDS/src/teakra/src/interpreter.h:2788:23: error: ‘exchange’ is not a member of ‘std’
2788 |         u16 x0 = std::exchange(regs.x[0], regs.y[0]);
      |                       ^~~~~~~~
compilation terminated due to -Wfatal-errors.
make[2]: *** [src/teakra/src/CMakeFiles/teakra.dir/build.make:202: src/teakra/src/CMakeFiles/teakra.dir/processor.cpp.o] Error 1
make[2]: Leaving directory '/home/atlas/.cache/yay/melonds/src/build'
make[1]: *** [CMakeFiles/Makefile2:194: src/teakra/src/CMakeFiles/teakra.dir/all] Error 2
make[1]: Leaving directory '/home/atlas/.cache/yay/melonds/src/build'
make: *** [Makefile:136: all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: melonds

so I'm wondering if it's an issue with the actual package or if its broken due to a gcc update
EDIT: Formatting

HTV04 commented on 2022-03-13 17:23 (UTC)

@spiffeeroo Fixed, git has been added as a makedepend.

@tepten2 Glad the issue has been resolved :)

tepten2 commented on 2022-03-09 19:36 (UTC) (edited on 2022-03-09 21:16 (UTC) by tepten2)

EDIT: the issue formerly described in this comment has been fixed upstream by pushing a new release tag. It wasn't an issue related to the AUR package. Everything works again :)