mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 22:04:19 +08:00
41 lines
802 B
Bash
41 lines
802 B
Bash
GIT=https://gitlab.redox-os.org/redox-os/newlib.git
|
|
BRANCH=redox
|
|
|
|
function recipe_version {
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_build {
|
|
pushd newlib/libc/sys
|
|
aclocal-1.11 -I ../..
|
|
autoconf
|
|
automake-1.11 --cygnus Makefile
|
|
popd
|
|
|
|
pushd newlib/libc/sys/redox
|
|
aclocal-1.11 -I ../../..
|
|
autoconf
|
|
automake-1.11 --cygnus Makefile
|
|
popd
|
|
|
|
CC= ./configure --build=${BUILD} --target="${HOST}" --prefix=/
|
|
"$REDOX_MAKE" all -j"$($NPROC)"
|
|
|
|
skip=1
|
|
}
|
|
|
|
function recipe_clean {
|
|
"$REDOX_MAKE" clean
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
"$REDOX_MAKE" DESTDIR="$dest" install
|
|
cd "$dest"
|
|
mv $HOST/* ./
|
|
rmdir $HOST
|
|
skip=1
|
|
}
|