diff --git a/recipes/wip/emulators/rvemu/recipe.toml b/recipes/wip/emulators/rvemu/recipe.toml index d616ce457a4645f790e7b1de721553af6697bec4..695b600ba61acf7915d5b2a78d383abdbfd66478 100644 --- a/recipes/wip/emulators/rvemu/recipe.toml +++ b/recipes/wip/emulators/rvemu/recipe.toml @@ -1,4 +1,4 @@ -#TODO Not compiled or tested +#TODO compiled but not tested [source] git = "https://github.com/d0iasm/rvemu" [build] diff --git a/recipes/wip/emulators/scemu/recipe.toml b/recipes/wip/emulators/scemu/recipe.toml index 5c35869989aba061e5c0b8dd8f56f0f8b8f5485a..d2917c6c67c3508651e5ca39fb50bb4533fd7c85 100644 --- a/recipes/wip/emulators/scemu/recipe.toml +++ b/recipes/wip/emulators/scemu/recipe.toml @@ -1,4 +1,4 @@ -#TODO Not compiled or tested +#TODO compiled but not tested [source] git = "https://github.com/sha0coder/scemu" [build] diff --git a/recipes/wip/emulators/trapezoid/recipe.toml b/recipes/wip/emulators/trapezoid/recipe.toml index 1977a6403463456aebf51a74208cd3f96d495a21..5d171151bf5313498a451dc0ad546b147a0f4258 100644 --- a/recipes/wip/emulators/trapezoid/recipe.toml +++ b/recipes/wip/emulators/trapezoid/recipe.toml @@ -1,5 +1,8 @@ -#TODO Not compiled or tested +#TODO make shaderc work [source] git = "https://github.com/Amjad50/Trapezoid" [build] template = "cargo" +dependencies = [ + "shaderc", +] diff --git a/recipes/wip/emulators/wie/recipe.toml b/recipes/wip/emulators/wie/recipe.toml index 665fc5a27995ac193b6732df3e0ae09ddf70a894..a24022cee8889cac382c4a3c3fcfcc9db3e82152 100644 --- a/recipes/wip/emulators/wie/recipe.toml +++ b/recipes/wip/emulators/wie/recipe.toml @@ -1,4 +1,4 @@ -#TODO Not compiled or tested +#TODO compilation error [source] git = "https://github.com/dlunch/wie" [build] diff --git a/recipes/wip/emulators/yuzu/recipe.toml b/recipes/wip/emulators/yuzu/recipe.toml deleted file mode 100644 index 7d0f3eb3254ce43e2e7bb097075ed5f49f1979a6..0000000000000000000000000000000000000000 --- a/recipes/wip/emulators/yuzu/recipe.toml +++ /dev/null @@ -1,36 +0,0 @@ -#TODO probably wrong script, see https://github.com/yuzu-emu/yuzu/wiki/Building-For-Linux -[source] -git = "https://github.com/yuzu-emu/yuzu" -[build] -template = "custom" -dependencies = [ - "ffmpeg6", - "sdl2", - "qt5-base", - "boost", - "libfmt", - "zlib", - "zstd", - "openssl1", - "mesa", - "lz4", - "opus", -] -script = """ -COOKBOOK_CONFIGURE="cmake" -COOKBOOK_CONFIGURE_FLAGS=( - -DCMAKE_BUILD_TYPE=Release - -DCMAKE_CROSSCOMPILING=True - -DCMAKE_EXE_LINKER_FLAGS="-static" - -DCMAKE_INSTALL_PREFIX="/" - -DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}" - -DCMAKE_SYSTEM_NAME=Generic - -DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)" - -DCMAKE_VERBOSE_MAKEFILE=On - -DYUZU_USE_BUNDLED_SDL2=OFF - -DYUZU_USE_EXTERNAL_SDL2=OFF - -DYUZU_USE_EXTERNAL_FFMPEG=OFF -"${COOKBOOK_SOURCE}" -) -cookbook_configure -"""