blob: dd8e094eeaa4ea9c794beb61d458b7b505be5ce1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh -e
export DESTDIR="$1"
# I don't know why these build systems add these "optional" dependencies, then
# don't let you disable them when your system has it.
clsed "/libbsd\_dep/s/'libbsd'/'libnothankyou'/" meson.build
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
|