diff --git a/recipes/wip/libs/other/libspdlog/recipe.toml b/recipes/wip/libs/other/libspdlog/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..79400034d874e8e4087988b1f34c6a808db35b48
--- /dev/null
+++ b/recipes/wip/libs/other/libspdlog/recipe.toml
@@ -0,0 +1,20 @@
+#TODO maybe incomplete script
+[source]
+git = "https://github.com/gabime/spdlog"
+[build]
+template = "custom"
+script = """
+COOKBOOK_CONFIGURE="cmake"
+COOKBOOK_CONFIGURE_FLAGS=(
+    -DCMAKE_BUILD_TYPE=Release
+    -DCMAKE_CROSSCOMPILING=True
+    -DCMAKE_EXE_LINKER_FLAGS="-static"
+    -DCMAKE_INSTALL_PREFIX="/"
+    -DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
+    -DCMAKE_SYSTEM_NAME=Generic
+    -DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
+    -DCMAKE_VERBOSE_MAKEFILE=On
+"${COOKBOOK_SOURCE}"
+)
+cookbook_configure
+"""
diff --git a/recipes/wip/net/remote/jupii/recipe.toml b/recipes/wip/net/remote/jupii/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..9169263cd7dc147784cde2a07e0aadd27291d1bd
--- /dev/null
+++ b/recipes/wip/net/remote/jupii/recipe.toml
@@ -0,0 +1,23 @@
+#TODO maybe incomplete script
+#TODO missing dependencies? - https://github.com/mkiol/Jupii#libraries
+[source]
+git = "https://github.com/mkiol/Jupii"
+rev = "ed80ca0ea29081a2bff038faf4884e3acabb14b7"
+[build]
+template = "custom"
+script = """
+COOKBOOK_CONFIGURE="cmake"
+COOKBOOK_CONFIGURE_FLAGS=(
+    -DCMAKE_BUILD_TYPE=Release
+    -DCMAKE_CROSSCOMPILING=True
+    -DCMAKE_EXE_LINKER_FLAGS="-static"
+    -DCMAKE_INSTALL_PREFIX="/"
+    -DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
+    -DCMAKE_SYSTEM_NAME=Generic
+    -DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
+    -DCMAKE_VERBOSE_MAKEFILE=On
+    -DWITH_DESKTOP=ON
+"${COOKBOOK_SOURCE}"
+)
+cookbook_configure
+"""
diff --git a/recipes/wip/recorders/gpu-screen-recorder-gtk/recipe.toml b/recipes/wip/recorders/gpu-screen-recorder-gtk/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..c2fc5c68f5594ac566ef80b2e0d49ac985a9d00f
--- /dev/null
+++ b/recipes/wip/recorders/gpu-screen-recorder-gtk/recipe.toml
@@ -0,0 +1,14 @@
+#TODO not compiled or tested
+[source]
+git = "https://git.dec05eba.com/gpu-screen-recorder-gtk"
+rev = "7fb7608b720068d3c114330e8d274b04ef310cf2"
+[build]
+template = "custom"
+dependencies = [
+    "gtk3",
+    "libx11",
+]
+[package]
+dependencies = [
+    "gpu-screen-recorder",
+]
diff --git a/recipes/wip/recorders/gpu-screen-recorder/recipe.toml b/recipes/wip/recorders/gpu-screen-recorder/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..7c43efed6d085c796816d3d0923381c5b48f6751
--- /dev/null
+++ b/recipes/wip/recorders/gpu-screen-recorder/recipe.toml
@@ -0,0 +1,20 @@
+#TODO missing script for meson
+[source]
+git = "https://git.dec05eba.com/gpu-screen-recorder"
+rev = "422f214283ba50649acca4d9b5a9778d313fe05b"
+[build]
+template = "custom"
+dependencies = [
+    "mesa",
+    "libvulkan",
+    "ffmpeg6",
+    "libx11",
+    "libxcomposite",
+    "libxrandr",
+    "libxfixes",
+    "libxdamage",
+    "pulseaudio",
+    "libva",
+    "libcap",
+    "libwayland",
+]
diff --git a/recipes/wip/science/siril/recipe.toml b/recipes/wip/science/siril/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..21d6258d8eab4c363250f1f7fc09f7820517585b
--- /dev/null
+++ b/recipes/wip/science/siril/recipe.toml
@@ -0,0 +1,14 @@
+#TODO missing cross-compilation script
+#TODO missing dependencies - https://gitlab.com/free-astro/siril#requirements
+# build instructions - https://gitlab.com/free-astro/siril#building-siril-for-gnulinux
+[source]
+tar = "https://free-astro.org/download/siril-1.2.4.tar.bz2"
+[build]
+template = "custom"
+dependencies = [
+    "glib",
+    "gtk3",
+    "liblcms",
+    "fftw",
+    "opencv4",
+]