Update recipes

This commit is contained in:
Ribbon 2024-06-18 21:13:11 +00:00
parent 840463bc28
commit 3c4a0d35dd
2 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#TODO not compiled or tested
#TODO redox is not supported by the procfs crate
[source]
git = "https://github.com/reubeno/brush"
[build]

View File

@ -4,6 +4,15 @@ git = "https://github.com/gosub-browser/gosub-engine"
[build]
template = "custom"
script = """
cookbook_cargo --bin gosub-parser css3-parser renderer \
style-parser
cookbook_cargo --bin gosub_engine
BINS=(
gosub-parser
css3-parser
renderer
style-parser
)
for bin in "${BINS[@]}"
do
ln -sv gosub_engine "${COOKBOOK_STAGE}/usr/bin/$bin"
done
"""