blob: 63f43bf30a723969d32f8c7e749623f8b8b4c6c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash -ex
# Highly opinionated wrapper for Arch Linux packaging (now also for muon)
exec muon meson setup \
--prefix /usr \
--libexecdir lib \
--sbindir bin \
--buildtype plain \
--auto-features enabled \
--wrap-mode nodownload \
-D b_pie=true \
-D python.bytecompile=1 \
"$@"
|