blob: bf56ece161de5092af1eba0e44ab4a14deb8be3b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | #!/bin/sh -e
export DESTDIR="$1"
# So many features are auto that we are going to make an exception for this one.
cl-meson \
    --auto-features=auto \
    -Dtremor=disabled \
    -Dexamples=disabled \
    -Dgtk_doc=disabled \
    -Dcdparanoia=disabled \
    -Dintrospection=disabled \
    -Dsndio=enabled \
    . output
ninja -C output
ninja -C output install
 |