2019-10-23 08:46:18 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
sudo apt -y install git libx11-dev meson pkg-config python3-setuptools python3-mako zlib1g-dev libexpat1-dev libdrm-dev bison flex libwayland-dev wayland-protocols libwayland-egl-backend-dev libxext-dev libxdamage-dev libx11-xcb-dev libxcb-glx0-dev libxcb-dri2-0-dev libxcb-dri3-dev libxcb-present-dev libxshmfence-dev libxxf86vm-dev libxrandr-dev gettext
|
|
|
|
sudo apt -y install mesa-utils
|
|
|
|
|
|
|
|
cd /tmp
|
2019-12-03 06:52:48 +01:00
|
|
|
git clone https://gitlab.freedesktop.org/mesa/mesa -b master
|
2019-10-23 08:46:18 +02:00
|
|
|
cd mesa
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2019-12-03 06:52:48 +01:00
|
|
|
meson .. . -Dprefix=/usr -Ddri-drivers= -Dvulkan-drivers= -Dgallium-drivers=panfrost,kmsro,swrast -Dlibunwind=false
|
2019-10-23 08:46:18 +02:00
|
|
|
sudo ninja install
|
|
|
|
|
|
|
|
echo "You may now reboot"
|