mirror of
https://github.com/zoriya/astal.git
synced 2025-12-06 06:06:10 +00:00
17 lines
266 B
Bash
17 lines
266 B
Bash
#!/usr/bin/env bash
|
|
|
|
meson setup \
|
|
--prefix /usr \
|
|
--libexecdir lib \
|
|
--sbindir bin \
|
|
--buildtype plain \
|
|
--auto-features enabled \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=false \
|
|
-D b_pie=true \
|
|
-D python.bytecompile=1 \
|
|
--wipe \
|
|
build
|
|
|
|
meson install -C build
|