mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
Add recipes
This commit is contained in:
parent
7577beba7e
commit
5d8d9e021d
9
recipes/wip/fonts/noto-sans-cjk/recipe.toml
Normal file
9
recipes/wip/fonts/noto-sans-cjk/recipe.toml
Normal file
@ -0,0 +1,9 @@
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -pv fonts "${COOKBOOK_STAGE}/usr/share/fonts/Noto-Sans-CJK"
|
||||
wget https://github.com/notofonts/noto-cjk/releases/download/Sans2.004/02_NotoSansCJK-TTF-VF.zip
|
||||
unzip 02_NotoSansCJK-TTF-VF.zip -d fonts
|
||||
mkdir -pv "${COOKBOOK_STAGE}/usr/share/fonts/Noto-Sans-CJK"
|
||||
cp -rv fonts/Variable/TTF/* "${COOKBOOK_STAGE}/usr/share/fonts/Noto-Sans-CJK"
|
||||
"""
|
||||
8
recipes/wip/fonts/noto-serif-cjk/recipe.toml
Normal file
8
recipes/wip/fonts/noto-serif-cjk/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -pv fonts "${COOKBOOK_STAGE}/usr/share/fonts/Noto-Serif-CJK"
|
||||
wget https://github.com/notofonts/noto-cjk/releases/download/Serif2.003/03_NotoSerifCJK-TTF-VF.zip
|
||||
unzip 03_NotoSerifCJK-TTF-VF.zip -d fonts
|
||||
cp -rv fonts/Variable/TTF/* "${COOKBOOK_STAGE}/usr/share/fonts/Noto-Serif-CJK"
|
||||
"""
|
||||
10
recipes/wip/fonts/noto/recipe.toml
Normal file
10
recipes/wip/fonts/noto/recipe.toml
Normal file
@ -0,0 +1,10 @@
|
||||
[source]
|
||||
git = "https://github.com/notofonts/notofonts.github.io"
|
||||
rev = "noto-monthly-release-2026.02.01"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -pv "${COOKBOOK_STAGE}/usr/share/fonts/Noto"
|
||||
cp -rv "${COOKBOOK_SOURCE}"/fonts/*/full/ttf/* "${COOKBOOK_STAGE}/usr/share/fonts/Noto"
|
||||
"""
|
||||
19
recipes/wip/games/strategy/draughts/recipe.toml
Normal file
19
recipes/wip/games/strategy/draughts/recipe.toml
Normal file
@ -0,0 +1,19 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/tobagin/Draughts"
|
||||
rev = "v2.2.0"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "meson"
|
||||
mesonflags = [
|
||||
"-Dtests=false",
|
||||
]
|
||||
dependencies = [
|
||||
"glib",
|
||||
"gtk4",
|
||||
"libadwaita",
|
||||
"libgee",
|
||||
"libsoup",
|
||||
"json-glib",
|
||||
]
|
||||
dev-dependencies = ["host:blueprint"]
|
||||
14
recipes/wip/mobile/android-tools/recipe.toml
Normal file
14
recipes/wip/mobile/android-tools/recipe.toml
Normal file
@ -0,0 +1,14 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
tar = "https://github.com/nmeum/android-tools/releases/download/35.0.2/android-tools-35.0.2.tar.xz"
|
||||
[build]
|
||||
template = "cmake"
|
||||
dependencies = [
|
||||
"libusb",
|
||||
"pcre",
|
||||
"protobuf",
|
||||
"libbrotli",
|
||||
"zstd",
|
||||
"lz4",
|
||||
]
|
||||
dev-dependencies = ["host:go"]
|
||||
13
recipes/wip/security/authenticator/recipe.toml
Normal file
13
recipes/wip/security/authenticator/recipe.toml
Normal file
@ -0,0 +1,13 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://gitlab.gnome.org/World/Authenticator"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "meson"
|
||||
dependencies = [
|
||||
"glib",
|
||||
"gtk4",
|
||||
"libadwaita",
|
||||
"gstreamer",
|
||||
"gobject-introspection",
|
||||
]
|
||||
16
recipes/wip/services/elogind/recipe.toml
Normal file
16
recipes/wip/services/elogind/recipe.toml
Normal file
@ -0,0 +1,16 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/elogind/elogind"
|
||||
rev = "V255.22"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "meson"
|
||||
mesonflags = [
|
||||
"-Dmode=release",
|
||||
"-Dtranslations=false",
|
||||
"-Dtests=false",
|
||||
]
|
||||
dependencies = [
|
||||
"libeudev",
|
||||
"libcap",
|
||||
]
|
||||
12
recipes/wip/sound/music/metronome/recipe.toml
Normal file
12
recipes/wip/sound/music/metronome/recipe.toml
Normal file
@ -0,0 +1,12 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://gitlab.gnome.org/World/metronome"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "meson"
|
||||
dependencies = [
|
||||
"glib",
|
||||
"gtk4",
|
||||
"libadwaita",
|
||||
"gstreamer",
|
||||
]
|
||||
16
recipes/wip/sound/music/tempo/recipe.toml
Normal file
16
recipes/wip/sound/music/tempo/recipe.toml
Normal file
@ -0,0 +1,16 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/tobagin/tempo"
|
||||
rev = "v1.5.1"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "meson"
|
||||
dependencies = [
|
||||
"gtk4",
|
||||
"libadwaita",
|
||||
"glib",
|
||||
"json-glib",
|
||||
"libgee",
|
||||
"gstreamer",
|
||||
]
|
||||
dev-dependencies = ["host:blueprint"]
|
||||
9
recipes/wip/video/webcam/cosmic-ext-camera/recipe.toml
Normal file
9
recipes/wip/video/webcam/cosmic-ext-camera/recipe.toml
Normal file
@ -0,0 +1,9 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/cosmic-utils/camera"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
"gstreamer",
|
||||
]
|
||||
Loading…
Reference in New Issue
Block a user