2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-15 20:32:26 +00:00
repo/xorg/mesa/build

12 lines
190 B
Plaintext
Raw Normal View History

2019-06-27 09:19:50 +00:00
#!/bin/sh -e
2019-06-27 18:20:52 +00:00
./configure \
2019-06-27 09:19:50 +00:00
--prefix=/usr \
2019-06-27 09:25:10 +00:00
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
2019-06-27 18:20:52 +00:00
--with-platforms=x11,drm
2019-06-27 09:19:50 +00:00
2019-06-27 18:20:52 +00:00
make
make DESTDIR="$1" install