mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
15 lines
265 B
Bash
Executable File
15 lines
265 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
-Ddefault_library=both \
|
|
-Denable-docs=false \
|
|
-Denable-wayland=true \
|
|
-Denable-x11=false \
|
|
-Denable-xkbregistry=false \
|
|
. output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|