Update recipes

This commit is contained in:
Ribbon 2024-06-09 22:42:10 +00:00
parent e47df787a4
commit adedb15da5
3 changed files with 27 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#TODO not compiled or tested
#TODO ahash crate error
[source]
git = "https://git.meli-email.org/meli/meli"
[build]

View File

@ -1,4 +1,4 @@
#TODO not compiled or tested
#TODO missing header files
[source]
tar = "https://github.com/mobile-shell/mosh/releases/download/mosh-1.4.0/mosh-1.4.0.tar.gz"
[build]

View File

@ -4,6 +4,29 @@ git = "https://github.com/rustcoreutils/posixutils-rs"
[build]
template = "custom"
script = """
cookbook_cargo_packages calc datetime dev display file \
fs misc pathnames plib process screen sys text tree users xform
cookbook_cargo
BIN=(
calc
datetime
dev
display
file
fs
misc
pathnames
plib
process
screen
sys
text
tree
users
xform
)
for bin in "${BINS[@]}"
do
ln -sv coreutils "${COOKBOOK_STAGE}/usr/bin/$bin"
done
"""