13 lines
318 B
Bash
13 lines
318 B
Bash
#!/bin/bash -ex
|
|
# Highly opinionated wrapper for Arch Linux packaging
|
|
|
|
exec meson setup \
|
|
--prefix /usr \
|
|
--libexecdir lib \
|
|
--sbindir bin \
|
|
--buildtype plain \
|
|
--auto-features disabled \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true \
|
|
"$@"
|