mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-19 13:45:54 +00:00
21 lines
560 B
Bash
21 lines
560 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
mkdir -p /epoxy
|
|
pushd /epoxy
|
|
wget -qO- https://github.com/anholt/libepoxy/releases/download/1.5.8/libepoxy-1.5.8.tar.xz | tar -xJ --strip-components=1
|
|
meson build/ $EXTRA_MESON_ARGS
|
|
ninja -C build install
|
|
popd
|
|
rm -rf /epoxy
|
|
|
|
VIRGLRENDERER_VERSION=7db2faa354a895b75cee9e9c872c87500e1be7cb
|
|
git clone https://gitlab.freedesktop.org/virgl/virglrenderer.git --single-branch --no-checkout /virglrenderer
|
|
pushd /virglrenderer
|
|
git checkout "$VIRGLRENDERER_VERSION"
|
|
meson build/ $EXTRA_MESON_ARGS
|
|
ninja -C build install
|
|
popd
|
|
rm -rf /virglrenderer
|