summarylogtreecommitdiffstats
path: root/arch-meson
blob: 11d424d0a56fcf8c7f2a673b9f99799637e70fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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_pie=true \
  -D              python.bytecompile=1 \
  "$@"