mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 04:44:19 +08:00
15 lines
409 B
TOML
15 lines
409 B
TOML
#TODO compilation error
|
|
[source]
|
|
git = "https://github.com/Nakadra/sphere-runtime"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"openssl1",
|
|
]
|
|
script = """
|
|
cookbook_cargo
|
|
mkdir -pv "${COOKBOOK_STAGE}/usr/share/sphere"
|
|
cp -rv "${COOKBOOK_SOURCE}/*.sphere" "${COOKBOOK_STAGE}/usr/share/sphere"
|
|
echo "entrypoint = "echo 'Hello, from my first Sphere!'"" > "${COOKBOOK_STAGE}/usr/share/sphere/hello.sphere"
|
|
"""
|