mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-27 07:14:18 +08:00
18 lines
436 B
TOML
18 lines
436 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/periodictable.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
DYNAMIC_INIT
|
|
cookbook_cargo
|
|
mkdir -pv "${COOKBOOK_STAGE}/ui/apps"
|
|
cp -v "${COOKBOOK_SOURCE}/pkg/manifest" "${COOKBOOK_STAGE}/ui/apps/periodictable"
|
|
mkdir -pv "${COOKBOOK_STAGE}/ui/icons"
|
|
cp -v "${COOKBOOK_SOURCE}/pkg/icon.png" "${COOKBOOK_STAGE}/ui/icons/periodictable.png"
|
|
"""
|
|
|
|
[package]
|
|
dependencies = [
|
|
"orbital",
|
|
] |