Files
RedBear-OS/local/recipes/drivers/linux-kpi/recipe.toml
T

16 lines
523 B
TOML

# linux-kpi build-ordering marker. Downstream driver builds compile the crate via Cargo path deps.
# The cookbook cargo template cannot install a library-only crate cleanly here, so keep this as a
# custom no-op recipe until the cookbook grows first-class Rust library packaging.
[source]
path = "source"
[build]
template = "custom"
dependencies = [
"redox-driver-sys",
]
script = """
echo "linux-kpi: build-ordering marker actual crate is compiled by downstream Cargo builds"
mkdir -p "${COOKBOOK_STAGE}/usr"
"""