mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-02 15:37:49 +00:00
libepoxy: switched toolchain to meson / clean up
This commit is contained in:
parent
9af93d4f41
commit
a56c18fa5c
@ -12,19 +12,18 @@ PKG_VERSION="1.5.3"
|
||||
PKG_SHA256="002958c5528321edd53440235d3c44e71b5b1e09b9177e8daf677450b6c4433d"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="https://github.com/anholt/libepoxy"
|
||||
PKG_URL="https://github.com/anholt/libepoxy/releases/download/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||
PKG_URL="https://github.com/anholt/libepoxy/releases/download/${PKG_VERSION}/libepoxy-${PKG_VERSION}.tar.xz"
|
||||
PKG_DEPENDS_TARGET="toolchain"
|
||||
PKG_LONGDESC="Epoxy is a library for handling OpenGL function pointer management for you."
|
||||
PKG_TOOLCHAIN="autotools"
|
||||
|
||||
if [ "$OPENGL" != "no" ]; then
|
||||
PKG_DEPENDS_TARGET+=" $OPENGL"
|
||||
if [ "${OPENGL_SUPPORT}" = "yes" ]; then
|
||||
PKG_DEPENDS_TARGET+=" ${OPENGL}"
|
||||
fi
|
||||
|
||||
if [ "$OPENGLES" != "no" ]; then
|
||||
PKG_DEPENDS_TARGET+=" $OPENGLES"
|
||||
if [ "${OPENGLES_SUPPORT}" = "yes" ]; then
|
||||
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
||||
fi
|
||||
|
||||
if [ "$DISPLAYSERVER" != "x11" ]; then
|
||||
PKG_CONFIGURE_OPTS_TARGET="--disable-glx"
|
||||
if [ "${DISPLAYSERVER}" != "x11" ]; then
|
||||
PKG_MESON_OPTS_TARGET="-D glx=no"
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user