blob: c3d90c79f8aa4d7f7a0111cea5f49dc2e7769feb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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 \
-Ddoc=disabled \
-Dcdparanoia=disabled \
-Dintrospection=disabled \
. output
ninja -C output
ninja -C output install
|