mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-05 14:35:56 -07:00
34 lines
914 B
Bash
Executable File
34 lines
914 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
# rust_std is not (yet?) supported by muon, and we should try
|
|
# to avoid a hard rust dependency here if possible.
|
|
sed "s/, 'rust_std=2021'//" meson.build > _
|
|
mv -f _ meson.build
|
|
|
|
# To prevent the need for users to fork the mesa package to add
|
|
# libglvnd support, the below code checks for its availability
|
|
# and enables it if present. ie: install glvnd, rebuild mesa.
|
|
pkg-config --exists libglvnd || glvnd_enabled=false
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--buildtype=release \
|
|
-Dglx-read-only-text=true \
|
|
-Dplatforms=wayland \
|
|
-Dglx=disabled \
|
|
-Degl=enabled \
|
|
-Dvalgrind=false \
|
|
-Dzstd=disabled \
|
|
-Dglvnd="${glvnd_enabled:-true}" \
|
|
-Dvideo-codecs=vc1dec,h264dec,h264enc,h265dec,h265enc \
|
|
-Dvulkan-drivers='' \
|
|
. output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|