mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-30 00:28:44 +08:00
Add recipes
This commit is contained in:
parent
9a93aab9d1
commit
ac3db0c451
@ -0,0 +1,30 @@
|
||||
#TODO not compiled or tested
|
||||
# build instructions - https://github.com/Lime3DS/Lime3DS/wiki/Building-From-Source#linux
|
||||
[source]
|
||||
git = "https://github.com/Lime3DS/Lime3DS"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"sdl2",
|
||||
"qt6-base",
|
||||
"qt6-multimedia",
|
||||
"portaudio",
|
||||
"libx11",
|
||||
"libxext",
|
||||
"pipewire",
|
||||
]
|
||||
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
|
||||
"""
|
||||
12
recipes/wip/graphics/editors/pencil2d/recipe.toml
Normal file
12
recipes/wip/graphics/editors/pencil2d/recipe.toml
Normal file
@ -0,0 +1,12 @@
|
||||
#TODO missing script for qmake and gnu make
|
||||
# build instructions - https://dev.pencil2d.org/build_linux.html
|
||||
[source]
|
||||
git = "https://github.com/pencil2d/pencil"
|
||||
branch = "release/0.7.0"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"qt6-base",
|
||||
"qt6-multimedia",
|
||||
"qt6-svg",
|
||||
]
|
||||
29
recipes/wip/image/editors/xpano/recipe.toml
Normal file
29
recipes/wip/image/editors/xpano/recipe.toml
Normal file
@ -0,0 +1,29 @@
|
||||
#TODO satisfy the dependencies and complete the script
|
||||
# build instructions - https://github.com/krupkat/xpano#development
|
||||
# linux script - https://github.com/krupkat/xpano/blob/main/misc/build/build-ubuntu-22.sh
|
||||
[source]
|
||||
git = "https://github.com/krupkat/xpano"
|
||||
rev = "5e626f66d2670a7f3fd04e805610ef98a506e401"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"gtk3",
|
||||
"opencv4",
|
||||
"sdl2",
|
||||
"libspdlog",
|
||||
]
|
||||
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
|
||||
"""
|
||||
8
recipes/wip/web/zen-browser/recipe.toml
Normal file
8
recipes/wip/web/zen-browser/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO missing script for npm
|
||||
# build instructions - https://docs.zen-browser.app/building
|
||||
#TODO analyze the dependencies
|
||||
[source]
|
||||
git = "https://github.com/zen-browser/desktop"
|
||||
branch = "stable"
|
||||
[build]
|
||||
template = "custom"
|
||||
Loading…
Reference in New Issue
Block a user