mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-23 15:50:06 -07:00
15 lines
291 B
Bash
Executable File
15 lines
291 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# 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
|