46768830ae
Now x11-packages repository will use original names for packages. For example, libgtk2 now will be provided as gtk2, libgtk3 will be available as gtk3, libsdl - as sdl. List of changed packages: libatk --> atk libglu --> glu libgtk2 --> gtk2 libgtk3 --> gtk3 libmesa --> mesa libsdl --> sdl libsdl2 --> sdl2 libsdl-net --> sdl-net riscvemu-sdl --> riscvemu xorg-xvfb --> xorg-server-xvfb List of dependent packages (should be rebuilt with new deps): dosbox, emacs-x, galculator, geany, libepoxy, mtpaint, qemu-system-x86_64, the-powder-toy, tigervnc, wireshark-gtk, xarchiver. Note: depending on which packages are installed, it may be necessary to upgrade with 'apt dist-upgrade'.
41 lines
1.2 KiB
Bash
41 lines
1.2 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=4
|
|
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_CONFLICTS="libmesa"
|
|
TERMUX_PKG_REPLACES="libmesa"
|
|
|
|
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
|
|
}
|