mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
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 enabled \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=false \
|
|
-D b_pie=true \
|
|
"$@"
|