2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-12-24 08:20:05 -07:00
repo/xorg/mesa/build

13 lines
216 B
Plaintext
Raw Normal View History

2019-06-27 03:19:50 -06:00
#!/bin/sh -e
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 \
--buildtype=release \
2019-06-27 12:20:52 -06:00
--with-platforms=x11,drm
2019-06-27 03:19:50 -06:00
2019-06-27 12:20:52 -06:00
make
make DESTDIR="$1" install