forked from kiss-community/repo
16 lines
236 B
Bash
Executable File
16 lines
236 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
-Dwith_wayland=yes \
|
|
-Dwith_x11=no \
|
|
-Dwith_glx=no \
|
|
. output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|