Add recipes

This commit is contained in:
Ribbon 2026-05-15 06:26:00 -03:00
parent 96e4de173a
commit 343c4f72b4
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#TODO not compiled or tested
#TODO need the pthreads library for thread-safety, but what library?
# build instructions: https://github.com/eclipse-mosquitto/mosquitto#building-from-source
[source]
tar = "https://mosquitto.org/files/source/mosquitto-2.1.2.tar.gz"
[build]
template = "cmake"
cmakeflags = [
"-DWITH_TESTS=OFF",
"-DWITH_DOCS=OFF",
]
dependencies = [
"libedit",
]

View File

@ -0,0 +1,13 @@
#TODO configure for proper packaging
# run "pip install ." or "uv pip install ."
# installation instructions: https://docs.seqera.io/multiqc/getting_started/installation#cloning-the-repository
[source]
git = "https://github.com/MultiQC/MultiQC"
rev = "v1.34"
shallow_clone = true
[build]
template = "custom"
script = """
mkdir -pv "${COOKBOOK_STAGE}/home/user/multiqc"
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/home/user/multiqc"
"""