repo/xorg/mesa/build

17 lines
315 B
Plaintext
Raw Normal View History

2019-06-27 03:19:50 -06:00
#!/bin/sh -e
2019-06-27 12:30:40 -06:00
patch -p1 < musl.patch
2019-06-27 12:25:37 -06:00
# Use autotools to build mesa.
# Meson has no ability to disable 'gettext'.
2019-06-27 12:20:52 -06:00
./configure \
2019-06-27 03:19:50 -06:00
--prefix=/usr \
2019-06-27 03:25:10 -06:00
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
2019-06-27 12:21:58 -06:00
--with-platforms=x11,drm \
--enable-autotools
2019-06-27 03:19:50 -06:00
2019-06-27 12:20:52 -06:00
make
make DESTDIR="$1" install