mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-02 09:38:42 +08:00
16 lines
391 B
TOML
16 lines
391 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/libcosmic.git"
|
|
branch = "redox"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
set -x
|
|
${COOKBOOK_CARGO} build \
|
|
--release \
|
|
--manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
|
|
--package cosmic
|
|
mkdir -pv "${COOKBOOK_STAGE}/bin"
|
|
cp -v "target/${TARGET}/release/cosmic" "${COOKBOOK_STAGE}/bin/libcosmic"
|
|
"""
|