mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-07 03:58:41 +08:00
18 lines
395 B
Bash
18 lines
395 B
Bash
GIT=https://github.com/pop-os/cosmic-text.git
|
|
BRANCH=main
|
|
|
|
function recipe_build {
|
|
sysroot="$(realpath ../sysroot)"
|
|
set -x
|
|
cargo build --target "$TARGET" --release --package editor-orbclient
|
|
set +x
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
mkdir -pv "$dest/bin"
|
|
cp -v "target/${TARGET}/release/editor-orbclient" "$dest/bin/cosmic-text"
|
|
skip=1
|
|
}
|