repo/xorg/mesa/build
2019-06-27 21:30:40 +03:00

17 lines
315 B
Bash
Executable File

#!/bin/sh -e
patch -p1 < musl.patch
# Use autotools to build mesa.
# Meson has no ability to disable 'gettext'.
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--with-platforms=x11,drm \
--enable-autotools
make
make DESTDIR="$1" install