mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 22:04:19 +08:00
update recipes
This commit is contained in:
parent
72d5b757d6
commit
4168ff5d68
34
recipes/wip/games/openspades-free/recipe.toml
Normal file
34
recipes/wip/games/openspades-free/recipe.toml
Normal file
@ -0,0 +1,34 @@
|
||||
#TODO probably wrong script, see https://github.com/yvt/openspades#on-unixes-from-source
|
||||
#TODO port GLEW to Orbital
|
||||
#TODO add the FOSS assets on the script, see https://github.com/DeathByDenim/openspades-free-pak
|
||||
[source]
|
||||
git = "https://github.com/yvt/openspades"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"glew",
|
||||
"openssl1",
|
||||
"sdl2",
|
||||
"sdl2-image",
|
||||
"freealut",
|
||||
"freetype2",
|
||||
"opus",
|
||||
"opusfile",
|
||||
"libjpeg",
|
||||
"openal",
|
||||
]
|
||||
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
|
||||
"${COOKBOOK_SOURCE}"
|
||||
)
|
||||
cookbook_configure
|
||||
"""
|
||||
34
recipes/wip/games/zerospades-free/recipe.toml
Normal file
34
recipes/wip/games/zerospades-free/recipe.toml
Normal file
@ -0,0 +1,34 @@
|
||||
#TODO probably wrong script, see https://github.com/yvt/openspades#on-unixes-from-source
|
||||
#TODO port GLEW to Orbital
|
||||
#TODO add the FOSS assets on the script, see https://github.com/DeathByDenim/openspades-free-pak
|
||||
[source]
|
||||
git = "https://github.com/siecvi/zerospades"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"glew",
|
||||
"openssl1",
|
||||
"sdl2",
|
||||
"sdl2-image",
|
||||
"freealut",
|
||||
"freetype2",
|
||||
"opus",
|
||||
"opusfile",
|
||||
"libjpeg",
|
||||
"openal",
|
||||
]
|
||||
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
|
||||
"${COOKBOOK_SOURCE}"
|
||||
)
|
||||
cookbook_configure
|
||||
"""
|
||||
@ -1,4 +1,5 @@
|
||||
#TODO missing script for "make", see https://github.com/nigels-com/glew#linux-and-mac
|
||||
#TODO port to Orbital
|
||||
[source]
|
||||
git = "https://github.com/nigels-com/glew"
|
||||
rev = "9fb23c3e61cbd2d581e33ff7d8579b572b38ee26"
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
#TODO probably missing dependencies
|
||||
#TODO port to Orbital
|
||||
[source]
|
||||
tar = "https://download.gnome.org/sources/gtk%2B/2.24/gtk%2B-2.24.33.tar.xz"
|
||||
[build]
|
||||
@ -1,4 +1,5 @@
|
||||
#TODO probably missing dependencies, see https://docs.gtk.org/gtk3/building.html#dependencies
|
||||
#TODO port to Orbital
|
||||
[source]
|
||||
tar = "https://download.gnome.org/sources/gtk+/3.24/gtk%2B-3.24.37.tar.xz"
|
||||
[build]
|
||||
@ -1,4 +1,5 @@
|
||||
#TODO missing script for Meson, see https://docs.gtk.org/gtk4/building.html
|
||||
#TODO port to Orbital
|
||||
[source]
|
||||
tar = "https://download.gnome.org/sources/gtk/4.11/gtk-4.11.2.tar.xz"
|
||||
[build]
|
||||
@ -1,4 +1,5 @@
|
||||
#TODO find a tarball link
|
||||
#TODO port to Orbital
|
||||
[source]
|
||||
tar = "http://download.qt.io/official_releases/qt/4.8/4.8.7/qt-everywhere-opensource-src-4.8.7.tar.gz"
|
||||
[build]
|
||||
@ -1,4 +1,5 @@
|
||||
#TODO make libxkbcommon work
|
||||
#TODO port to Orbital
|
||||
#TODO build instructions - https://doc.qt.io/qt-5/linux-building.html
|
||||
#TODO customization - https://doc.qt.io/qt-5/configure-options.html
|
||||
[source]
|
||||
@ -1,3 +1,4 @@
|
||||
#TODO port to Orbital
|
||||
#TODO build instructions - https://doc.qt.io/qt-5/linux-building.html
|
||||
#TODO customization - https://doc.qt.io/qt-5/configure-options.html
|
||||
[source]
|
||||
@ -1,4 +1,5 @@
|
||||
#TODO make libxkbcommon work
|
||||
#TODO port to Orbital
|
||||
#TODO build instructions - https://doc.qt.io/qt-6/linux-building.html
|
||||
#TODO customization - https://doc.qt.io/qt-6/configure-options.html
|
||||
[source]
|
||||
@ -1,3 +1,4 @@
|
||||
#TODO port to Orbital
|
||||
#TODO Missing script for GNU Autotools and CMake
|
||||
[source]
|
||||
tar = "https://download.qt.io/official_releases/qt/6.6/6.6.1/single/qt-everywhere-src-6.6.1.tar.xz"
|
||||
@ -1,3 +1,4 @@
|
||||
#TODO port to Orbital
|
||||
#TODO probably wrong script, see https://github.com/raysan5/raylib/wiki/Working-on-GNU-Linux
|
||||
[source]
|
||||
git = "https://github.com/raysan5/raylib"
|
||||
@ -6,7 +7,6 @@ rev = "ae50bfa2cc569c0f8d5bc4315d39db64005b1b08"
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"mesa",
|
||||
"libwayland",
|
||||
"libxkbcommon",
|
||||
]
|
||||
script = """
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
#TODO probably wrong script, see https://github.com/yvt/openspades#on-unixes-from-source
|
||||
# The game crash with the Wayland backend of SDL2, you need to use the "SDL_VIDEODRIVER=x11" environment variable to use XWayland
|
||||
# a script to workaround this is the best solution
|
||||
#TODO port GLEW to Orbital
|
||||
[source]
|
||||
git = "https://github.com/yvt/openspades"
|
||||
[build]
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
#TODO probably wrong script, see https://github.com/yvt/openspades#on-unixes-from-source
|
||||
# The game crash with the Wayland backend of SDL2, you need to use the "SDL_VIDEODRIVER=x11" environment variable to use XWayland
|
||||
# a script to workaround this is the best solution
|
||||
#TODO port GLEW to Orbital
|
||||
[source]
|
||||
git = "https://github.com/siecvi/zerospades"
|
||||
[build]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user