mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 04:14:17 +08:00
Add recipes
This commit is contained in:
parent
0617e29abb
commit
b82d8f992d
@ -1,4 +1,4 @@
|
||||
#TODO missing dependencies: https://github.com/aa55-dev/yeTTY#building
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/aa55-dev/yeTTY"
|
||||
rev = "v0.1.3"
|
||||
@ -7,6 +7,9 @@ template = "cmake"
|
||||
dependencies = [
|
||||
"qt6-base",
|
||||
"qt6-multimedia",
|
||||
"qt6-serialport",
|
||||
"zstd",
|
||||
"boost",
|
||||
"libbacktrace",
|
||||
"ktexteditor6",
|
||||
]
|
||||
|
||||
9
recipes/wip/games/strategy/chessmd/recipe.toml
Normal file
9
recipes/wip/games/strategy/chessmd/recipe.toml
Normal file
@ -0,0 +1,9 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/ChessMD/ChessMD"
|
||||
rev = "v1.0"
|
||||
[build]
|
||||
template = "cmake"
|
||||
dependencies = [
|
||||
"qt6-base",
|
||||
]
|
||||
6
recipes/wip/libs/debug/libbacktrace/recipe.toml
Normal file
6
recipes/wip/libs/debug/libbacktrace/recipe.toml
Normal file
@ -0,0 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/ianlancetaylor/libbacktrace"
|
||||
rev = "b9e40069c0b47a722286b94eb5231f7f05c08713"
|
||||
[build]
|
||||
template = "configure"
|
||||
5
recipes/wip/libs/kf6/ktexteditor6/recipe.toml
Normal file
5
recipes/wip/libs/kf6/ktexteditor6/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
tar = "https://download.kde.org/stable/frameworks/6.19/ktexteditor-6.19.0.tar.xz"
|
||||
[build]
|
||||
template = "cmake"
|
||||
12
recipes/wip/libs/text/libspelling/recipe.toml
Normal file
12
recipes/wip/libs/text/libspelling/recipe.toml
Normal file
@ -0,0 +1,12 @@
|
||||
#TODO not compiled or tested
|
||||
# lacking build instructions
|
||||
[source]
|
||||
tar = "https://download.gnome.org/sources/libspelling/0.4/libspelling-0.4.9.tar.xz"
|
||||
[build]
|
||||
template = "meson"
|
||||
mesonflags = [
|
||||
"-Ddocs=false",
|
||||
"-Dintrospection=false",
|
||||
"-Dsysproof=false",
|
||||
"-Dvapi=false",
|
||||
]
|
||||
18
recipes/wip/net/ssh/ssh-pilot/recipe.toml
Normal file
18
recipes/wip/net/ssh/ssh-pilot/recipe.toml
Normal file
@ -0,0 +1,18 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/mfat/sshpilot"
|
||||
rev = "v4.3.8"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -pv "${COOKBOOK_STAGE}/usr/share/ssh-pilot"
|
||||
mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
|
||||
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/usr/share/ssh-pilot"
|
||||
echo "#!/usr/bin/env sh \n python /usr/share/ssh-pilot/run.py" > "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot
|
||||
chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot
|
||||
"""
|
||||
[package]
|
||||
dependencies = [
|
||||
"gtk4",
|
||||
"libadwaita",
|
||||
]
|
||||
16
recipes/wip/sound/kwave/recipe.toml
Normal file
16
recipes/wip/sound/kwave/recipe.toml
Normal file
@ -0,0 +1,16 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://invent.kde.org/multimedia/kwave"
|
||||
rev = "release/25.08"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cmake"
|
||||
dependencies = [
|
||||
"libpulse",
|
||||
"libmad",
|
||||
#"libsamplerate",
|
||||
#"libogg",
|
||||
#"libvorbis",
|
||||
#"libflac",
|
||||
#"fftw",
|
||||
]
|
||||
14
recipes/wip/text/gnome-text-editor/recipe.toml
Normal file
14
recipes/wip/text/gnome-text-editor/recipe.toml
Normal file
@ -0,0 +1,14 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
tar = "https://download.gnome.org/sources/gnome-text-editor/49/gnome-text-editor-49.0.tar.xz"
|
||||
[build]
|
||||
template = "meson"
|
||||
mesonflags = [
|
||||
"-Deditorconfig=false"
|
||||
]
|
||||
dependencies = [
|
||||
"gtk4",
|
||||
"gtksourceview",
|
||||
"libadwaita",
|
||||
"libspelling",
|
||||
]
|
||||
Loading…
Reference in New Issue
Block a user