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