Add recipes

This commit is contained in:
Ribbon 2024-12-08 19:21:40 +00:00
parent e765fde83a
commit e6192fc27b
9 changed files with 74 additions and 0 deletions

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

View File

@ -0,0 +1,5 @@
#TODO not compiled or tested
[source]
git = "https://github.com/fragarriss/CurVis"
[build]
template = "cargo"

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

View File

@ -0,0 +1,5 @@
#TODO not compiled or tested
[source]
git = "https://github.com/zaphar/sheetsui"
[build]
template = "cargo"

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

View File

@ -0,0 +1,5 @@
#TODO not compiled or tested
[source]
git = "https://github.com/dheijl/swyh-rs"
[build]
template = "cargo"

View File

@ -0,0 +1,5 @@
#TODO not compiled or tested
[source]
git = "https://github.com/idiv-biodiversity/stor-age"
[build]
template = "cargo"

View File

@ -0,0 +1,5 @@
#TODO not compiled or tested
[source]
git = "https://github.com/cchexcode/bobr"
[build]
template = "cargo"

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