cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
18 lines
417 B
TOML
18 lines
417 B
TOML
[source]
|
|
path = "source"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
DYNAMIC_INIT
|
|
|
|
mkdir -p "${COOKBOOK_STAGE}/usr/lib"
|
|
|
|
cargo build --lib --target "${TARGET}"
|
|
|
|
cp "${COOKBOOK_SOURCE}/target/${TARGET}/debug/libredox_driver_sys.a" \
|
|
"${COOKBOOK_STAGE}/usr/lib/libredox_driver_sys.a"
|
|
cp "${COOKBOOK_SOURCE}/target/${TARGET}/debug/libredox_driver_sys.rlib" \
|
|
"${COOKBOOK_STAGE}/usr/lib/libredox_driver_sys.rlib"
|
|
"""
|