summarylogtreecommitdiffstats
path: root/arch-meson
blob: 139da16e7cab30e1edb9eec270effd67527b0ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -ex
# Highly opinionated wrapper for Arch Linux packaging

exec meson setup \
  --prefix        /usr \
  --libexecdir    lib \
  --sbindir       bin \
  --buildtype     plain \
  --auto-features enabled \
  --wrap-mode     nodownload \
  -D              b_lto=true \
  -D              b_pie=true \
  -D              python.bytecompile=1 \
  "$@"