Hi!
I wanted to install bottom and decided this was a good opportunity to test out the recipes.
I set up everything according to the quick start and nano builds fine.
Then I generated a recipe with boulder new https://github.com/ClementTsang/bottom/archive/refs/tags/0.10.2.tar.gz
and modified slightly (added summary and description + added networking : true
which solved some errors that it couldn't resolve "https://index.crates.io/config.json")
However now I get the following error:
āIā + install -Dm00755 -t /mason/install//usr/bin target/x86_64-unknown-linux-gnu/release/bottom
āIā install: cannot stat 'target/x86_64-unknown-linux-gnu/release/bottom': No such file or directory
Error: build: container: exited with failure: build recipe: failed with status code 1
I assume the problem is that the path gets mangled (extra slash and space in the middle) but I have no idea how to fix this. I've tried adding variations of target = "/mason/install/usr/bin/target/x86_64-unknown-linux-gnu/release/bottom"
and %install_dir %(installroot)/%(datadir)/fish/vendor_completions.d
target/*/release/btm completions fish > %(installroot)/%(datadir)/fish/vendor_completions.d/btm.fish
the latter I took from existing recipes in the repository.
Any suggestions?