summaryrefslogtreecommitdiffstats
path: root/abs/extra/meson/arch-meson
blob: 695a94729daffa0583d5f0bc3913d5801bd93083 (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_lto=true \
  -D              b_pie=true \
  "$@"