update recipes

This commit is contained in:
Ribbon 2024-03-22 14:39:32 +00:00
parent ad5116f116
commit 53ffbd40ff
5 changed files with 7 additions and 40 deletions

View File

@ -1,4 +1,4 @@
#TODO Not compiled or tested
#TODO compiled but not tested
[source]
git = "https://github.com/d0iasm/rvemu"
[build]

View File

@ -1,4 +1,4 @@
#TODO Not compiled or tested
#TODO compiled but not tested
[source]
git = "https://github.com/sha0coder/scemu"
[build]

View File

@ -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",
]

View File

@ -1,4 +1,4 @@
#TODO Not compiled or tested
#TODO compilation error
[source]
git = "https://github.com/dlunch/wie"
[build]

View File

@ -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
"""