Package Details: duckstation-git 0.1.r8555.gf7d7eec-1

Git Clone URL: https://aur.archlinux.org/duckstation-git.git (read-only, click to copy)
Package Base: duckstation-git
Description: A Sony PlayStation (PSX) emulator, focusing on playability, speed, and long-term maintainability (git version)
Upstream URL: https://github.com/stenzek/duckstation
Keywords: emulator game gaming psone psx
Licenses: cc-by-nc-nd-4.0
Conflicts: duckstation
Provides: duckstation
Submitter: jackdroido
Maintainer: eugene
Last Packager: eugene
Votes: 27
Popularity: 0.65
First Submitted: 2020-04-25 18:24 (UTC)
Last Updated: 2025-01-30 23:54 (UTC)

Required by (0)

Sources (9)

Latest Comments

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

scatherinch commented on 2023-04-27 04:15 (UTC) (edited on 2023-04-27 04:25 (UTC) by scatherinch)

Hello,

I have tried installing this package several times on new installations and when I do, there is a problem:

When I go to set up my controller profiles, SOMETIMES they will appear in the proper order they should be in (etc: Shared, 1, 2, 3, and so on), but there are many times when the controller profiles appear out of order when I make a new controller profile (Shared, 2, 4, 1, 3, so forth). As you can imagine, this is very agitating. I am trying to figure out why it happens.

Do you know why this phenomenon occurs and how I can make it so where the profiles are ordered properly?

loathingkernel commented on 2023-03-28 00:09 (UTC) (edited on 2023-03-28 11:33 (UTC) by loathingkernel)

Hi, I took the liberty of cleaning up the PKGBUILD. You can find it here https://github.com/loathingKernel/PKGBUILDs/tree/master/aur/duckstation-git .

Some notes about the changes.

  • gtk3 seems to be completely unused and it was removed.
  • libpulse, sndio and libdrm added to optdepends too.
  • added libglvnd, libxrandr, libx11 and wayland as explicit dependecies because namcap or building in a clean CHROOT were complaining
  • added hicolor-icon-theme because the icon was moved into the hicolor theme directory structure. That way other themes can override it.
  • added qt6-wayland as makedepend and optdepend, it is needed to run Qt6 applications under a wayland session
  • added jack2 in makedepends and optdepends. It builds with it in a clean CHROOT. You might want to remove it though as the jack2 package conflicts with pipewire-jack if the latter is installed and the user is not building in a clean CHROOT. Otherwise it operates just fine.

  • added duckstation-qt.desktop, it is just cleaner to distribute it as a file with the package instead of a here-script

  • added duckstation-qt.sh to be installed in /usr/bin/ instead of symlinking the executable.

  • I changed the cmake options to more closely follow upstream's AppImage. Namely, duckstation is built with clang/llvm and with CMAKE_INTERPROCEDURAL_OPTIMIZATION (effectively LTO) enabled.

  • Upstream is explicit about the options in their CMake invocation so adjusted to that.
  • USE_DRMKMS was turned on and the relevant dependency added to make/optdepends

visious commented on 2023-01-24 19:07 (UTC) (edited on 2023-01-24 19:41 (UTC) by visious)

Hi all, in case duckstation is unable to run a game, try in terminal the bellow command:

USE_GLX=1 duckstation-qt

OR

Edite the Menu Enty: Menu > Games > DuckStation

env USE_GLX=1 duckstation-qt %f

visious commented on 2022-12-30 02:41 (UTC) (edited on 2022-12-30 02:51 (UTC) by visious)

Hi all. While I'm typing in the terminal "sudo journalctl -p 3 -xb" I'm getting this: https://pastebin.com/WkrN36PA When I'm trying to run a game, Duckstation is not working anymore.

Neko-san commented on 2022-10-03 19:26 (UTC)

The patch is no longer needed; upstream chamged that line to something slightly different to resolve the issue despite not having the issues page publicly available; compiles fine now

Neko-san commented on 2022-10-03 19:15 (UTC)

@Episilon I'll check it in a minute and post a fix

Neko-san commented on 2022-10-01 22:45 (UTC)

With that said, it would be great if you add this patch to the package so it doesn't have to be done manually every time

Upstream isn't exactly welcoming to pull requests for fixing issues

Neko-san commented on 2022-09-29 07:05 (UTC) (edited on 2022-09-29 08:57 (UTC) by Neko-san)

@eugene That solution's completely unnecessary; the correct solution is simple:

--- a/src/frontend-common/fullscreen_ui.cpp 2022-09-29 00:28:13.283487127 -0500
+++ b/src/frontend-common/fullscreen_ui.cpp 2022-09-29 00:24:25.579484802 -0500
@@ -1154,7 +1154,7 @@
     ImGui::SetCursorPos(ImVec2(ImGui::GetWindowWidth() - rev_size.x - LayoutScale(20.0f),
                                ImGui::GetWindowHeight() - rev_size.y - LayoutScale(20.0f)));
     ImGui::PushFont(g_medium_font);
-    ImGui::Text(g_scm_tag_str);
+    ImGui::Text("%s", g_scm_tag_str);
     ImGui::PopFont();
   }


italoghost commented on 2022-09-18 16:20 (UTC)

Thanks, @eugene! I was clueless on how to debug the error. The output on the terminal is not the most readable, but copying and pasting it on a text editor made me see that it was pointing to the exactly line that you undone with the prepare().

Do you think we should report it to the dev?