2019-06-27 03:19:50 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2020-02-25 13:02:34 -07:00
|
|
|
# Install python-mako which is solely needed for mesa
|
|
|
|
# and thus contained in this build.
|
|
|
|
{
|
|
|
|
cd mako
|
|
|
|
|
|
|
|
python3 setup.py build
|
|
|
|
python3 setup.py install \
|
|
|
|
--prefix=/usr \
|
|
|
|
--root="$PWD/dist"
|
|
|
|
|
|
|
|
# Use a glob to avoid having to figure out the Python
|
|
|
|
# version for the path below.
|
|
|
|
cd dist/usr/lib/python*/site-packages
|
|
|
|
|
|
|
|
# Set the PYTHONPATH so python knows where to find mako.
|
|
|
|
# The one liner simply appends the existing path and
|
|
|
|
# handles the case where an unset PYTHONPATH breaks
|
|
|
|
# python as it will only contain our new addition.
|
|
|
|
PYTHONPATH=$PWD:$(python -c "import sys; print(':'.join(sys.path))")
|
|
|
|
|
|
|
|
cd -; cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
export PYTHONPATH
|
2019-10-07 15:16:49 -06:00
|
|
|
export DESTDIR="$1"
|
2020-05-08 15:28:46 -06:00
|
|
|
export CFLAGS="$CFLAGS -DGLX_X86_READONLY_TEXT"
|
2019-08-03 10:36:34 -06:00
|
|
|
|
2019-08-03 15:32:53 -06:00
|
|
|
# Fix issues with musl and firefox.
|
2019-10-10 03:49:08 -06:00
|
|
|
# https://bugs.freedesktop.org/show_bug.cgi?id=35268
|
|
|
|
# https://github.com/mesa3d/mesa/commit/9f37c9903b87f86a533bfaffa72f0ecb285b02b2
|
2020-01-29 10:42:59 -07:00
|
|
|
sed -i "/pre_args += '-DUSE_ELF_TLS'/d" meson.build
|
2019-08-03 15:32:53 -06:00
|
|
|
|
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
|
2019-10-07 15:16:49 -06:00
|
|
|
ninja -C output install
|