summaryrefslogtreecommitdiff
path: root/meson-install.sh
blob: 0e6b2589bda77f0c334f643611e765e44513a743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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