11 lines
231 B
Bash
11 lines
231 B
Bash
#!/bin/bash -ex
|
|
# Meson wrapper for Hyperbola packaging
|
|
|
|
exec meson setup \
|
|
--prefix /usr \
|
|
--buildtype release \
|
|
--auto-features enabled \
|
|
--wrap-mode nofallback \
|
|
-D b_lto=true \
|
|
"$@"
|