Add recipes

This commit is contained in:
Ribbon 2024-10-28 01:03:12 +00:00
parent c6912ef25c
commit 224ed0bc99
4 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#TODO not compiled or tested
[source]
tar = "https://gaia.ari.uni-heidelberg.de/gaiasky/releases/latest/gaiasky-3.6.4-2.3bfeec0f9.tar.gz"
[build]
template = "custom"
script = """
mkdir -pv "${COOKBOOK_STAGE}"/usr/share/gaia-sky
mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/share/gaia-sky
echo "#!/usr/bin/env bash \n /usr/share/gaia-sky" > "${COOKBOOK_STAGE}"/usr/bin/gaia-sky
chmod a+x "${COOKBOOK_STAGE}"/usr/bin/gaia-sky
"""

View File

@ -0,0 +1,8 @@
#TODO missing script for waf
#TODO discover how to build
#TODO discover if it has external dependencies
[source]
git = "https://github.com/jackaudio/jack2"
rev = "4f58969432339a250ce87fe855fb962c67d00ddb"
[build]
template = "custom"

View File

@ -0,0 +1,12 @@
#TODO missing script for meson
[source]
git = "https://github.com/SeaDve/Mousai"
[build]
template = "custom"
dependencies = [
"glib",
"gtk4",
"libadwaita",
"gstreamer",
"libsoup",
]

View File

@ -0,0 +1,11 @@
#TODO missing script for meson
#TODO missing dependencies
# build instructions - https://gitlab.com/mission-center-devs/mission-center#building---native
[source]
git = "https://gitlab.com/mission-center-devs/mission-center"
[build]
template = "custom"
dependencies = [
"gtk4",
"libadwaita",
]