Skip to content
Snippets Groups Projects
Verified Commit a49ca24a authored by Jeremy Soller's avatar Jeremy Soller
Browse files

WIP: Servo recipe

parent 1101a4c2
No related branches found
No related tags found
No related merge requests found
GIT=https://gitlab.redox-os.org/redox-os/servo.git
GIT_UPSTREAM=https://github.com/servo/servo.git
BRANCH=redox
BUILD_DEPENDS=(freetype gettext glib gstreamer harfbuzz libffi libiconv libpng openssl pcre zlib)
PREPARE_COPY=0
function recipe_version {
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
skip=1
}
function recipe_update {
echo "skipping update"
skip=1
}
function recipe_build {
source="$(realpath ../source)"
unset AR AS CC CXX LD NM OBJCOPY OBJDUMP RANLIB READELF STRIP
"$source/mach" build --target "${TARGET}" --release --with-frame-pointer # --jobs "$(nproc)"
skip=1
}
function recipe_test {
echo "skipping test"
skip=1
}
function recipe_clean {
echo "skipping clean"
skip=1
}
function recipe_stage {
echo "skipping stage"
skip=1
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment