mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 11:54:17 +08:00
12 lines
304 B
Bash
12 lines
304 B
Bash
GIT=https://gitlab.redox-os.org/redox-os/winit.git
|
|
GIT_UPSTREAM=https://github.com/tomaka/winit.git
|
|
BRANCH=redox
|
|
CARGOFLAGS="--example window"
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
mkdir -pv "$dest/bin"
|
|
cp -v "target/${TARGET}/release/examples/window" "$dest/bin/winit"
|
|
skip=1
|
|
}
|