mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-28 07:44:18 +08:00
Improve many recipes and remove abandoned recipe
This commit is contained in:
parent
7ef9e9230f
commit
be28ec17a1
@ -1,5 +1,6 @@
|
||||
#TODO "No suitable wgpu::Adapter found" error on execution
|
||||
[source]
|
||||
git = "https://github.com/sharkdp/binocle"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/ReFirmLabs/binwalk"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO compiled but not tested
|
||||
[source]
|
||||
git = "https://github.com/wfxr/code-minimap"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO open crate error (after cargo update)
|
||||
[source]
|
||||
git = "https://github.com/sloganking/codevis"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/iepathos/debtmap"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
#TODO camino crate error
|
||||
[source]
|
||||
git = "https://github.com/anistark/feluda"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
"openssl1",
|
||||
"openssl3",
|
||||
]
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO compiled but not tested
|
||||
[source]
|
||||
git = "https://github.com/sitkevij/hex"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO compilation error, missing mimalloc sys/syscall.h
|
||||
[source]
|
||||
git = "https://github.com/rhysd/hgrep"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO compiled but not tested
|
||||
[source]
|
||||
git = "https://github.com/pamburus/hl"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/rust-fuzz/honggfuzz-rs"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
#TODO missing script for "make", see https://github.com/krpors/hx#compiling-and-running
|
||||
#TODO missing script for gnu make: https://github.com/krpors/hx#compiling-and-running
|
||||
[source]
|
||||
git = "https://github.com/krpors/hx"
|
||||
rev = "c124b40586f701e47b35628fde286d20bf9988ca"
|
||||
rev = "v1.0.15"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "custom"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/fowles/pratdiff"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,5 +0,0 @@
|
||||
#TODO the multipipe crate was removed from crates.io, wait this PR to be merged: https://github.com/lava-xyz/rust-ontologist/pull/7
|
||||
[source]
|
||||
git = "https://github.com/lava-xyz/rust-ontologist"
|
||||
[build]
|
||||
template = "cargo"
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/Mohamed-Badry/statui"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/tinywatcher/tinywatcher"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
#TODO camino crate error
|
||||
[source]
|
||||
git = "https://github.com/woodruffw/zizmor"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
cookbook_cargo_packages zizmor
|
||||
"""
|
||||
|
||||
@ -1,5 +1,13 @@
|
||||
#TODO missing script for building: https://ant.apache.org/manual/install.html#buildingant
|
||||
#TODO not tested
|
||||
[source]
|
||||
tar = "https://downloads.apache.org/ant/source/apache-ant-1.10.14-src.tar.xz"
|
||||
tar = "https://dlcdn.apache.org//ant/binaries/apache-ant-1.10.15-bin.tar.xz"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -pv "${COOKBOOK_STAGE}/usr/bin/ant-dir"
|
||||
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/usr/bin/ant-dir"
|
||||
echo "/usr/bin/ant-dir/bin/ant" > "${COOKBOOK_STAGE}"/usr/bin/ant
|
||||
chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ant
|
||||
"""
|
||||
[package]
|
||||
dependencies = ["openjdk21",]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user