Add orbutils recipe and add depends to orbterm recipe

This commit is contained in:
Jeremy Soller 2020-05-21 15:44:28 -06:00
parent 88101b4a88
commit b62f5a2fc5
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1
2 changed files with 22 additions and 0 deletions

View File

@ -10,3 +10,8 @@ COOKBOOK_CARGO_FLAGS=(
)
cookbook_cargo
"""
[package]
depends = [
"orbital"
]

View File

@ -0,0 +1,17 @@
[source]
git = "https://gitlab.redox-os.org/redox-os/orbutils.git"
[build]
template = "custom"
script = """
COOKBOOK_CARGO_FLAGS=(
--path "${COOKBOOK_SOURCE}"
--root "${COOKBOOK_STAGE}/ui"
)
cookbook_cargo
"""
[package]
depends = [
"orbital"
]