mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-25 14:24:18 +08:00
Add recipes
This commit is contained in:
parent
ac3db0c451
commit
c6912ef25c
20
recipes/wip/libs/other/libspdlog/recipe.toml
Normal file
20
recipes/wip/libs/other/libspdlog/recipe.toml
Normal file
@ -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
|
||||
"""
|
||||
23
recipes/wip/net/remote/jupii/recipe.toml
Normal file
23
recipes/wip/net/remote/jupii/recipe.toml
Normal file
@ -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
|
||||
"""
|
||||
14
recipes/wip/recorders/gpu-screen-recorder-gtk/recipe.toml
Normal file
14
recipes/wip/recorders/gpu-screen-recorder-gtk/recipe.toml
Normal file
@ -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",
|
||||
]
|
||||
20
recipes/wip/recorders/gpu-screen-recorder/recipe.toml
Normal file
20
recipes/wip/recorders/gpu-screen-recorder/recipe.toml
Normal file
@ -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",
|
||||
]
|
||||
14
recipes/wip/science/siril/recipe.toml
Normal file
14
recipes/wip/science/siril/recipe.toml
Normal file
@ -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",
|
||||
]
|
||||
Loading…
Reference in New Issue
Block a user