2
0
mirror of https://codeberg.org/kiss-community/repo synced 2025-01-11 13:20:08 -07:00
repo/xorg/mesa/build

15 lines
291 B
Plaintext
Raw Normal View History

2019-06-27 03:19:50 -06:00
#!/bin/sh -e
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