forked from kiss-community/repo
18 lines
265 B
Bash
Executable File
18 lines
265 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
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
|