Maybe I’m asking the wrong question here, but the ares (emulator) flatpak: GitHub - flathub/dev.ares.ares currently does not copy over two folders from ares, a “Shaders” and a “Database” folder.
These are fairly important folders so I was trying to look into how to fix it but I wasn’t able to come up with anything conclusive.
The aur package for ares is able to solve this issue by using both a patch file and using two “-cp” lines:
Is something like what the aur package does possible for the manifest or any ideas on how to properly copy the “Shaders” and “Database” folders with the Flatpak?
Because it’s buildsystem: simple you can just add additional commands to build-commands of the module.
But the folders should already get copied by the build:
On Linux, running make install after compilation will copy these directories and binary into suitable locations (see desktop-ui/GNUmakefile for details). Alternatively, these directories can be copied from ares/Shaders/* and mia/Database/*.
I’ll have to see if I can figure out how to port over the ares-paths.patch file and see if I can make it work with the Flatpak, might be a bit above my skill level with this one .