mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-23 05:14:18 +08:00
Add recipes
This commit is contained in:
parent
21820704b1
commit
cbc2821e2f
5
recipes/wip/analysis/email-sleuth/recipe.toml
Normal file
5
recipes/wip/analysis/email-sleuth/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/tokenizer-decode/email-sleuth"
|
||||
[build]
|
||||
template = "cargo"
|
||||
8
recipes/wip/demos/mousefood/recipe.toml
Normal file
8
recipes/wip/demos/mousefood/recipe.toml
Normal 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
|
||||
"""
|
||||
5
recipes/wip/dev/git-tools/riff/recipe.toml
Normal file
5
recipes/wip/dev/git-tools/riff/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/walles/riff"
|
||||
[build]
|
||||
template = "cargo"
|
||||
8
recipes/wip/dev/other/wrkflw/recipe.toml
Normal file
8
recipes/wip/dev/other/wrkflw/recipe.toml
Normal 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
|
||||
"""
|
||||
5
recipes/wip/dev/rust-tools/tagref/recipe.toml
Normal file
5
recipes/wip/dev/rust-tools/tagref/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/stepchowfun/tagref"
|
||||
[build]
|
||||
template = "cargo"
|
||||
5
recipes/wip/net/download/apkeep/recipe.toml
Normal file
5
recipes/wip/net/download/apkeep/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/EFForg/apkeep"
|
||||
[build]
|
||||
template = "cargo"
|
||||
5
recipes/wip/search/srgn/recipe.toml
Normal file
5
recipes/wip/search/srgn/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/alexpovel/srgn"
|
||||
[build]
|
||||
template = "cargo"
|
||||
5
recipes/wip/terminal/tarts/recipe.toml
Normal file
5
recipes/wip/terminal/tarts/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/oiwn/tarts"
|
||||
[build]
|
||||
template = "cargo"
|
||||
8
recipes/wip/text/basalt/recipe.toml
Normal file
8
recipes/wip/text/basalt/recipe.toml
Normal 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
|
||||
"""
|
||||
25
recipes/wip/wayland/fht-compositor/recipe.toml
Normal file
25
recipes/wip/wayland/fht-compositor/recipe.toml
Normal 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}"
|
||||
"""
|
||||
Loading…
Reference in New Issue
Block a user