mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
9c96f455c1
closes #165
16 lines
240 B
Bash
Executable File
16 lines
240 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
meson setup \
|
|
-Dprefix=/usr \
|
|
-Dsysconfdir=/etc \
|
|
-Dmandir=/usr/share/man \
|
|
-Dwith_wayland=yes \
|
|
-Dwith_x11=no \
|
|
-Dwith_glx=no \
|
|
output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|