mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-03 10:08:45 +08:00
13 lines
196 B
Bash
13 lines
196 B
Bash
GIT=https://gitlab.redox-os.org/redox-os/relibc.git
|
|
|
|
function recipe_build {
|
|
make
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
make DESTDIR="$dest" install
|
|
skip=1
|
|
}
|