mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 04:44:19 +08:00
Add recipes
This commit is contained in:
parent
b89464bba8
commit
f4d5bb9cbb
6
recipes/wip/demos/scamp-cat/recipe.toml
Normal file
6
recipes/wip/demos/scamp-cat/recipe.toml
Normal file
@ -0,0 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/LordAizen1/scamp-cat"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
13
recipes/wip/dev/debug/stratoshark/recipe.toml
Normal file
13
recipes/wip/dev/debug/stratoshark/recipe.toml
Normal file
@ -0,0 +1,13 @@
|
||||
#TODO: not compiled or tested
|
||||
#TODO: discover minimum dependencies from cmake log
|
||||
# build instructions: https://www.wireshark.org/docs/wsdg_html_chunked/ChSetupUNIX.html
|
||||
# build options: https://gitlab.com/wireshark/wireshark/-/blob/master/CMakeOptions.txt
|
||||
[source]
|
||||
tar = "https://2.na.dl.wireshark.org/src/wireshark-4.6.5.tar.xz"
|
||||
[build]
|
||||
template = "cmake"
|
||||
cmakeflags = [
|
||||
"-DBUILD_wireshark=OFF",
|
||||
"-DBUILD_tshark=OFF",
|
||||
"-DBUILD_strato=ON",
|
||||
]
|
||||
12
recipes/wip/games/strategy/xboard/recipe.toml
Normal file
12
recipes/wip/games/strategy/xboard/recipe.toml
Normal file
@ -0,0 +1,12 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
tar = "https://ftp.gnu.org/gnu/xboard/xboard-4.9.1.tar.gz"
|
||||
[build]
|
||||
template = "configure"
|
||||
dependencies = [
|
||||
"cairo",
|
||||
"librsvg",
|
||||
"libxaw",
|
||||
]
|
||||
[package]
|
||||
dependencies = ["gnu-chess"]
|
||||
11
recipes/wip/net/analysis/wireshark/recipe.toml
Normal file
11
recipes/wip/net/analysis/wireshark/recipe.toml
Normal file
@ -0,0 +1,11 @@
|
||||
#TODO: not compiled or tested
|
||||
#TODO: discover minimum dependencies from cmake log
|
||||
# build instructions: https://www.wireshark.org/docs/wsdg_html_chunked/ChSetupUNIX.html
|
||||
# build options: https://gitlab.com/wireshark/wireshark/-/blob/master/CMakeOptions.txt
|
||||
[source]
|
||||
tar = "https://2.na.dl.wireshark.org/src/wireshark-4.6.5.tar.xz"
|
||||
[build]
|
||||
template = "cmake"
|
||||
cmakeflags = [
|
||||
"-DBUILD_wireshark=OFF",
|
||||
]
|
||||
6
recipes/wip/rs/uutils-awk/recipe.toml
Normal file
6
recipes/wip/rs/uutils-awk/recipe.toml
Normal file
@ -0,0 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/uutils/awk"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
6
recipes/wip/science/weather/weathr/recipe.toml
Normal file
6
recipes/wip/science/weather/weathr/recipe.toml
Normal file
@ -0,0 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/veirt/weathr"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
9
recipes/wip/security/aircrack-ng/recipe.toml
Normal file
9
recipes/wip/security/aircrack-ng/recipe.toml
Normal file
@ -0,0 +1,9 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
tar = "https://download.aircrack-ng.org/aircrack-ng-1.7.tar.gz"
|
||||
[build]
|
||||
template = "configure"
|
||||
dependencies = [
|
||||
"openssl3",
|
||||
#"hwloc" # enable for much better performance
|
||||
]
|
||||
8
recipes/wip/security/hashcat/recipe.toml
Normal file
8
recipes/wip/security/hashcat/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO missing script for gnu make: https://github.com/hashcat/hashcat/blob/master/BUILD.md
|
||||
[source]
|
||||
tar = "https://hashcat.net/files/hashcat-7.1.2.tar.gz"
|
||||
[build]
|
||||
template = "custom"
|
||||
dev-dependencies = [
|
||||
"host:python312"
|
||||
]
|
||||
9
recipes/wip/system/xdg-desktop-portal-gnome/recipe.toml
Normal file
9
recipes/wip/system/xdg-desktop-portal-gnome/recipe.toml
Normal file
@ -0,0 +1,9 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
tar = "https://download.gnome.org/sources/xdg-desktop-portal-gnome/49/xdg-desktop-portal-gnome-49.0.tar.xz"
|
||||
[build]
|
||||
template = "meson"
|
||||
mesonflags = ["-Dsystemd=disabled"]
|
||||
dependencies = [
|
||||
"xdg-desktop-portal",
|
||||
]
|
||||
6
recipes/wip/terminal/loop/recipe.toml
Normal file
6
recipes/wip/terminal/loop/recipe.toml
Normal file
@ -0,0 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/Miserlou/Loop"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
7
recipes/wip/text/fulgur/recipe.toml
Normal file
7
recipes/wip/text/fulgur/recipe.toml
Normal file
@ -0,0 +1,7 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/fulgur-rs/fulgur"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
cargopackages = ["fulgur-cli"]
|
||||
Loading…
Reference in New Issue
Block a user