2019-06-27 03:19:50 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2019-07-06 09:10:14 -06:00
|
|
|
patch -p1 < mesa-no-gettext.patch
|
|
|
|
|
2019-06-27 12:36:01 -06:00
|
|
|
meson \
|
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:36:01 -06:00
|
|
|
--buildtype=release \
|
2019-06-27 12:56:54 -06:00
|
|
|
-Dplatforms=x11,drm \
|
2019-06-27 12:36:01 -06:00
|
|
|
. output
|
|
|
|
|
|
|
|
ninja -C output
|
|
|
|
|
|
|
|
DESTDIR="$1" ninja -C output install
|