From d487eb3af5d60ac9c6a38f92138a2b0cdc96ec58 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jeremy@system76.com> Date: Mon, 17 Jun 2019 20:20:46 -0600 Subject: [PATCH] WIP: pathfinder recipe --- recipes/pathfinder/recipe.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 recipes/pathfinder/recipe.sh diff --git a/recipes/pathfinder/recipe.sh b/recipes/pathfinder/recipe.sh new file mode 100644 index 000000000..37f8eb446 --- /dev/null +++ b/recipes/pathfinder/recipe.sh @@ -0,0 +1,25 @@ +GIT=https://gitlab.redox-os.org/redox-os/pathfinder.git +BRANCH=redox +GIT_UPSTREAM=https://github.com/servo/pathfinder.git +BUILD_DEPENDS=(llvm mesa zlib) +BRANCH=redox +CARGOFLAGS="--manifest-path examples/canvas_glutin_minimal/Cargo.toml" + +function recipe_build { + sysroot="$(realpath ../sysroot)" + cp -p "$ROOT/Xargo.toml" "Xargo.toml" + set -x + xargo rustc --target "$TARGET" --release ${CARGOFLAGS} \ + -- \ + -L "${sysroot}/lib" \ + -C link-args="$("${PKG_CONFIG}" --libs osmesa) -lglapi -lz -lstdc++ -lc -lgcc" + set +x + skip=1 +} + +function recipe_stage { + dest="$(realpath $1)" + mkdir -pv "$dest/bin" + cp -v "target/${TARGET}/release/canvas_glutin_minimal" "$dest/bin/pathfinder" + skip=1 +} -- GitLab