mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-25 06:14:18 +08:00
21 lines
390 B
TOML
21 lines
390 B
TOML
# TODO remove gnu-grep when extrautils grep supports grep -E
|
|
[source]
|
|
git = "https://gitlab.com/sortix/os-test"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
mkdir -pv "${COOKBOOK_STAGE}/share/os-test"
|
|
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/share/os-test"
|
|
"""
|
|
|
|
[package]
|
|
dependencies = [
|
|
"gcc13",
|
|
"gnu-binutils",
|
|
"gnu-grep",
|
|
"gnu-make",
|
|
"libarchive",
|
|
"sed",
|
|
]
|