Update TODOs and try to fix the rsille recipe

This commit is contained in:
Ribbon 2025-06-06 11:50:35 -03:00
parent 8adc701839
commit 92874f86ce
4 changed files with 17 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#TODO not compiled or tested
#TODO compiled but not tested
[source]
git = "https://github.com/schell/renderling"
[build]

View File

@ -1,4 +1,4 @@
#TODO not compiled or tested
#TODO compiled but not tested
[source]
git = "https://github.com/MeadowlarkDAW/rootvg"
[build]

View File

@ -1,4 +1,4 @@
#TODO not compiled or tested
#TODO compiled but not tested
[source]
git = "https://github.com/ekzhang/rpt"
[build]

View File

@ -4,5 +4,18 @@ git = "https://github.com/nidhoggfgg/rsille"
[build]
template = "custom"
script = """
cookbook_cargo_examples anime-mix obj-mix cube cube-colorful imgille
cookbook_cargo_examples anime-mix obj-mix cube cube-colorful
recipe="$(basename "${COOKBOOK_RECIPE}")"
for example in imgille
do
"${COOKBOOK_CARGO}" build \
--manifest-path "${COOKBOOK_SOURCE}/${PACKAGE_PATH}/Cargo.toml" \
--example "${example}" \
--release \
--features=img
mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
cp -v \
"target/${TARGET}/${build_type}/examples/${example}" \
"${COOKBOOK_STAGE}/usr/bin/${recipe}_${example}"
done
"""