PKGBUILDs/extra/meson/arch-meson

15 lines
359 B
Plaintext
Raw Normal View History

2017-10-12 01:37:43 +00:00
#!/bin/bash -ex
2018-12-10 13:20:42 +00:00
# Highly opinionated wrapper for Arch Linux packaging
2017-10-12 01:37:43 +00:00
exec meson setup \
2019-02-06 00:29:20 +00:00
--prefix /usr \
--libexecdir lib \
--sbindir bin \
--buildtype plain \
--auto-features enabled \
--wrap-mode nodownload \
-D b_lto=false \
-D b_pie=true \
2023-07-18 02:04:08 +00:00
-D python.bytecompile=1 \
2018-07-03 15:50:49 +00:00
"$@"