mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-04 22:15:37 -07:00
16 lines
244 B
Bash
Executable File
16 lines
244 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
-Dhas-dlvsym=false \
|
|
-Degl=yes \
|
|
-Dtests=false \
|
|
-Dglx=no \
|
|
-Dx11=false \
|
|
. output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|