I can reproduce this too.
It seems that dolphin has introduced a new dependency on SPIRV-Cross, in this PR. https://github.com/dolphin-emu/dolphin/pull/10673
A submodule has been introduced in Externals. Updating the PKGBUILD to clone it properly should fix it. This patch works for me, for now:
diff --git a/PKGBUILD b/PKGBUILD
index 4e18a08..daff635 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -41,6 +41,11 @@ prepare() {
git submodule init "$_mgbapath"
git config "submodule.$_mgbapath.url" "$srcdir/$pkgname-mgba/"
git submodule update "$_mgbapath"
+
+ # Provide SPIRV-Cross submodule
+ _spirv_crosspath="Externals/spirv_cross/SPIRV-Cross"
+ git submodule init "$_spirv_crosspath"
+ git submodule update "$_spirv_crosspath"
}
pkgver() {
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