mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 22:04:19 +08:00
Add recipes
This commit is contained in:
parent
e765fde83a
commit
e6192fc27b
6
recipes/wip/dev/lang/cjit/recipe.toml
Normal file
6
recipes/wip/dev/lang/cjit/recipe.toml
Normal file
@ -0,0 +1,6 @@
|
||||
#TODO write a gnu make target for redox, see: https://github.com/dyne/cjit#build-from-source
|
||||
[source]
|
||||
git = "https://github.com/dyne/cjit"
|
||||
rev = "9a4321e64ea1af10e9e3c63de45af80b36846cda"
|
||||
[build]
|
||||
template = "custom"
|
||||
5
recipes/wip/graphics/other/curvis/recipe.toml
Normal file
5
recipes/wip/graphics/other/curvis/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/fragarriss/CurVis"
|
||||
[build]
|
||||
template = "cargo"
|
||||
21
recipes/wip/net/download/parabolic/recipe.toml
Normal file
21
recipes/wip/net/download/parabolic/recipe.toml
Normal file
@ -0,0 +1,21 @@
|
||||
#TODO it uses vcpkg for dependency management, see: https://github.com/NickvisionApps/parabolic#building-manually
|
||||
[source]
|
||||
git = "https://github.com/NickvisionApps/Parabolic"
|
||||
rev = "b2188390ce14b83c41c68eef87e833d6fd8b7d2f"
|
||||
[build]
|
||||
template = "custom"
|
||||
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
|
||||
"""
|
||||
5
recipes/wip/office/sheetsui/recipe.toml
Normal file
5
recipes/wip/office/sheetsui/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/zaphar/sheetsui"
|
||||
[build]
|
||||
template = "cargo"
|
||||
11
recipes/wip/search/clapgrep/recipe.toml
Normal file
11
recipes/wip/search/clapgrep/recipe.toml
Normal file
@ -0,0 +1,11 @@
|
||||
#TODO write a script to copy the data files, see: https://github.com/luleyleo/clapgrep/blob/main/makefile
|
||||
[source]
|
||||
git = "https://github.com/luleyleo/clapgrep"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"gtk4",
|
||||
]
|
||||
script = """
|
||||
cookbook_cargo_packages clapgrep-gnome
|
||||
"""
|
||||
5
recipes/wip/sound/swyh-rs/recipe.toml
Normal file
5
recipes/wip/sound/swyh-rs/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/dheijl/swyh-rs"
|
||||
[build]
|
||||
template = "cargo"
|
||||
5
recipes/wip/storage/stor-age/recipe.toml
Normal file
5
recipes/wip/storage/stor-age/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/idiv-biodiversity/stor-age"
|
||||
[build]
|
||||
template = "cargo"
|
||||
5
recipes/wip/terminal/bobr/recipe.toml
Normal file
5
recipes/wip/terminal/bobr/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/cchexcode/bobr"
|
||||
[build]
|
||||
template = "cargo"
|
||||
11
recipes/wip/web/spider/recipe.toml
Normal file
11
recipes/wip/web/spider/recipe.toml
Normal file
@ -0,0 +1,11 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/spider-rs/spider"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"openssl1",
|
||||
]
|
||||
script = """
|
||||
cookbook_cargo_packages spider_cli
|
||||
"""
|
||||
Loading…
Reference in New Issue
Block a user