Last change
on this file since 103996 was 103996, checked in by vboxsync, 13 months ago |
Additions/3D/mesa: export mesa-24.0.2 to OSE. bugref:10606
|
File size:
629 bytes
|
Line | |
---|
1 | #!/usr/bin/env bash
|
---|
2 | # shellcheck disable=SC2086 # we want word splitting
|
---|
3 |
|
---|
4 | set -ex
|
---|
5 |
|
---|
6 | export LIBWAYLAND_VERSION="1.21.0"
|
---|
7 | export WAYLAND_PROTOCOLS_VERSION="1.31"
|
---|
8 |
|
---|
9 | git clone https://gitlab.freedesktop.org/wayland/wayland
|
---|
10 | cd wayland
|
---|
11 | git checkout "$LIBWAYLAND_VERSION"
|
---|
12 | meson setup -Ddocumentation=false -Ddtd_validation=false -Dlibraries=true _build $EXTRA_MESON_ARGS
|
---|
13 | meson install -C _build
|
---|
14 | cd ..
|
---|
15 | rm -rf wayland
|
---|
16 |
|
---|
17 | git clone https://gitlab.freedesktop.org/wayland/wayland-protocols
|
---|
18 | cd wayland-protocols
|
---|
19 | git checkout "$WAYLAND_PROTOCOLS_VERSION"
|
---|
20 | meson setup _build $EXTRA_MESON_ARGS
|
---|
21 | meson install -C _build
|
---|
22 | cd ..
|
---|
23 | rm -rf wayland-protocols
|
---|
Note:
See
TracBrowser
for help on using the repository browser.