Skip to content
Snippets Groups Projects
Commit 67335290 authored by bjorn3's avatar bjorn3
Browse files

Remove glium recipe

Glium is no longer actively maintained.
parent 17443137
No related branches found
No related tags found
1 merge request!375Remove a bunch of recipes and convert one to wip
GIT=https://gitlab.redox-os.org/redox-os/glium.git
GIT_UPSTREAM=https://github.com/glium/glium.git
BUILD_DEPENDS=(llvm18 mesa zlib)
BRANCH=redox
CARGOFLAGS="--example teapot"
function recipe_build {
sysroot="$(realpath ../sysroot)"
set -x
cargo rustc --target "$TARGET" --release ${CARGOFLAGS} \
-- \
-L "${sysroot}/lib" \
-C link-args="-Wl,-Bstatic $("${PKG_CONFIG}" --libs osmesa) -lz -lstdc++ -lc -lgcc"
set +x
skip=1
}
function recipe_stage {
dest="$(realpath $1)"
mkdir -pv "$dest/bin"
cp -v "target/${TARGET}/release/examples/teapot" "$dest/bin/glium"
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