mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +08:00
Add recipes
This commit is contained in:
parent
38d7f59454
commit
d5dee8ab55
9
recipes/wip/fuse/cryfs/recipe.toml
Normal file
9
recipes/wip/fuse/cryfs/recipe.toml
Normal file
@ -0,0 +1,9 @@
|
||||
#TODO not compiled or tested
|
||||
# build instructions: https://github.com/cryfs/cryfs#building-from-source
|
||||
[source]
|
||||
tar = "https://github.com/cryfs/cryfs/releases/download/1.0.1/cryfs-1.0.1.tar.xz"
|
||||
[build]
|
||||
template = "cmake"
|
||||
dependencies = [
|
||||
"libfuse3",
|
||||
]
|
||||
11
recipes/wip/fuse/dislocker/recipe.toml
Normal file
11
recipes/wip/fuse/dislocker/recipe.toml
Normal file
@ -0,0 +1,11 @@
|
||||
#TODO not compiled or tested
|
||||
# build instructions: https://github.com/Aorimn/dislocker/blob/master/INSTALL.md
|
||||
[source]
|
||||
git = "https://github.com/Aorimn/dislocker"
|
||||
rev = "8b2aea09d431bd5497ae223c141ebaee7bdd481f"
|
||||
[build]
|
||||
template = "cmake"
|
||||
dependencies = [
|
||||
"libfuse3",
|
||||
"mbedtls",
|
||||
]
|
||||
12
recipes/wip/fuse/fuse-ext2/recipe.toml
Normal file
12
recipes/wip/fuse/fuse-ext2/recipe.toml
Normal file
@ -0,0 +1,12 @@
|
||||
#TODO not compiled or tested
|
||||
#TODO missing dependencies
|
||||
# build instructions: https://github.com/alperakcan/fuse-ext2#building
|
||||
[source]
|
||||
git = "https://github.com/alperakcan/fuse-ext2"
|
||||
rev = "ae35afb9ab08d87c66c1e021df792b3a7c4308b0"
|
||||
script = "./autogen.sh"
|
||||
[build]
|
||||
template = "configure"
|
||||
dependencies = [
|
||||
"libfuse2",
|
||||
]
|
||||
8
recipes/wip/fuse/mergerfs/recipe.toml
Normal file
8
recipes/wip/fuse/mergerfs/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO missing script for gnu make: https://trapexit.github.io/mergerfs/preview/setup/build/
|
||||
[source]
|
||||
tar = "https://github.com/trapexit/mergerfs/releases/download/2.40.2/mergerfs-2.40.2.tar.gz"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"libfuse3",
|
||||
]
|
||||
9
recipes/wip/fuse/securefs/recipe.toml
Normal file
9
recipes/wip/fuse/securefs/recipe.toml
Normal file
@ -0,0 +1,9 @@
|
||||
#TODO missing script for vcpkg: https://github.com/netheril96/securefs#build-from-source
|
||||
[source]
|
||||
git = "https://github.com/netheril96/securefs"
|
||||
rev = "v2.0.0"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"libfuse3",
|
||||
]
|
||||
10
recipes/wip/fuse/unionfs-fuse/recipe.toml
Normal file
10
recipes/wip/fuse/unionfs-fuse/recipe.toml
Normal file
@ -0,0 +1,10 @@
|
||||
#TODO not compiled or tested
|
||||
# build instructions: https://github.com/rpodgorny/unionfs-fuse#how-to-build
|
||||
[source]
|
||||
git = "https://github.com/rpodgorny/unionfs-fuse"
|
||||
rev = "v3.7"
|
||||
[build]
|
||||
template = "cmake"
|
||||
dependencies = [
|
||||
"libfuse3",
|
||||
]
|
||||
11
recipes/wip/tests/pjdfstest/recipe.toml
Normal file
11
recipes/wip/tests/pjdfstest/recipe.toml
Normal file
@ -0,0 +1,11 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/pjd/pjdfstest"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -pv "${COOKBOOK_STAGE}/home/user/pjdfstest"
|
||||
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/home/user/pjdfstest"
|
||||
"""
|
||||
[package]
|
||||
dependencies = ["perl5"]
|
||||
10
recipes/wip/tests/xfstests/recipe.toml
Normal file
10
recipes/wip/tests/xfstests/recipe.toml
Normal file
@ -0,0 +1,10 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/kdave/xfstests"
|
||||
rev = "2cba4b54e6ab21d9324000f3cd009dbe9cad9c19"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -pv "${COOKBOOK_STAGE}/home/user/xfstests"
|
||||
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/home/user/xfstests"
|
||||
"""
|
||||
Loading…
Reference in New Issue
Block a user