aboutsummaryrefslogtreecommitdiff
path: root/extra/meson/files/cl-meson
blob: e6c541c290e1a4bf920832db359b612ea3cc26fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e
# Wrapper for meson, we disable all auto features by default, and disable
# any downloads from subproject wrappers. We want the builds to be as
# reproducible as possible, and we want to be adding features most of the
# time instead of removing them.

exec meson setup \
    --prefix=/usr \
    --sysconfdir=/etc \
    --localstatedir=/var \
    --libexecdir=lib \
    --sbindir=bin \
    --buildtype=release \
    --auto-features=disabled \
    --wrap-mode=nodownload \
    "$@"