Add recipes

This commit is contained in:
Ribbon 2025-05-26 11:36:37 -03:00
parent 21820704b1
commit cbc2821e2f
10 changed files with 79 additions and 0 deletions

View File

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

View File

@ -0,0 +1,8 @@
#TODO not compiled or tested
[source]
git = "https://github.com/j-g00da/mousefood"
[build]
template = "custom"
script = """
cookbook_cargo_examples simulator
"""

View File

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

View File

@ -0,0 +1,8 @@
#TODO not compiled or tested
[source]
git = "https://github.com/bahdotsh/wrkflw"
[build]
template = "custom"
script = """
cookbook_cargo_packages wrkflw
"""

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,8 @@
#TODO not compiled or tested
[source]
git = "https://github.com/erikjuhani/basalt"
[build]
template = "custom"
script = """
cookbook_cargo_packages basalt-tui
"""

View File

@ -0,0 +1,25 @@
#TODO not compiled or tested
#TODO enable the udev-backend flag once wayland and eudev is working
[source]
git = "https://github.com/nferhat/fht-compositor"
[build]
template = "custom"
dependencies = [
"libwayland",
"libxkbcommon",
"mesa",
]
script = """
mkdir -pv "${COOKBOOK_STAGE}"/usr/share/wayland-sessions
cp -rv "${COOKBOOK_SOURCE}"/res/fht-compositor.desktop "${COOKBOOK_STAGE}"/usr/share/wayland-sessions
package=fht-compositor
"${COOKBOOK_CARGO}" build \
--manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
--package "${package}" \
--release
--winit-backend
mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
cp -v \
"target/${TARGET}/release/${package}" \
"${COOKBOOK_STAGE}/usr/bin/${package}"
"""