blob: 47b60e3b835f9d746c1b2bb60a8dfaf065aec2cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh -e
clsed '/^directory =/s/=.*/= fmt/' subprojects/fmt.wrap
export DESTDIR="$1"
cl-meson \
--auto-features=auto \
-Dicu=disabled \
-Dlibmpdclient=disabled \
. output
ninja -C output
ninja -C output install
|