57267c9fec
Since now X11 packages are official, it is necessary to rebuild them all to make sure that everything is okay.
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com> @xeffyr"
|
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.mesa3d.org
|
|
TERMUX_PKG_DESCRIPTION="An open-source implementation of the OpenGL specification"
|
|
## Use 17.3.x branch because 18.x.x requires 'pthread_barrier_t'.
|
|
TERMUX_PKG_VERSION=17.3.9
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_SRCURL=https://mesa.freedesktop.org/archive/mesa-${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=c5beb5fc05f0e0c294fefe1a393ee118cb67e27a4dca417d77c297f7d4b6e479
|
|
|
|
TERMUX_PKG_DEPENDS="libandroid-shmem, libexpat, libdrm, libx11, libxdamage, libxext, libxml2, libxshmfence"
|
|
TERMUX_PKG_BUILD_DEPENDS="xorgproto"
|
|
TERMUX_PKG_DEVPACKAGE_DEPENDS="xorgproto"
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--disable-asm
|
|
--disable-gbm
|
|
--disable-egl
|
|
--disable-gles1
|
|
--disable-gles2
|
|
--enable-dri3
|
|
--enable-glx=dri
|
|
--with-platforms=x11
|
|
--without-dri-drivers
|
|
--without-gallium-drivers
|
|
ac_cv_header_xlocale_h=no
|
|
"
|
|
|
|
termux_step_pre_configure () {
|
|
export LIBS="-landroid-shmem -latomic"
|
|
}
|
|
|
|
termux_step_post_massage() {
|
|
cd ${TERMUX_PKG_MASSAGEDIR}/${TERMUX_PREFIX}/lib || exit 1
|
|
if [ ! -e "./libGL.so.1" ]; then
|
|
ln -sf libGL.so libGL.so.1
|
|
fi
|
|
}
|