mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 14:50:07 -07:00
16 lines
228 B
Bash
Executable File
16 lines
228 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
patch -p1 < no-vulkan-headers.patch
|
|
|
|
meson setup \
|
|
-Dprefix=/usr \
|
|
-Dbuildtype=release \
|
|
-Dvulkan=disabled \
|
|
-Ddemos=false \
|
|
output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|