blob: 7b47156283083ce254dc3d089fc91a2b1ac341d8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | #!/bin/sh -e
export DESTDIR="$1"
cl-meson \
    -Ddefault_font_path=/usr/share/fonts \
    -Dsha1=libcrypto \
    -Dinput_thread=true \
    -Ddri3=true \
    -Dxdmcp=false \
    -Dsecure-rpc=false \
    . output
ninja -C output
ninja -C output install
 |