repo/xorg/mesa/build

17 lines
267 B
Plaintext
Raw Normal View History

2019-06-27 09:19:50 +00:00
#!/bin/sh -e
2019-06-27 18:36:01 +00:00
meson \
2019-06-27 09:19:50 +00:00
--prefix=/usr \
2019-06-27 09:25:10 +00:00
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
2019-06-27 18:36:01 +00:00
--buildtype=release \
--platforms=x11,drm \
--valgrind=false \
. output
ninja -C output
DESTDIR="$1" ninja -C output install
2019-06-27 09:19:50 +00:00