forked from libretro/Lakka-LibreELEC
47bfcfa8d9
Signed-off-by: Matthias Reichl <hias@horus.com>
27 lines
784 B
Makefile
27 lines
784 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="visualization.matrix"
|
|
PKG_VERSION="20.2.0-Nexus"
|
|
PKG_SHA256="f0b76edf45df7161d8525fa2ba623dee64ca66d515342e942100dc46c8220553"
|
|
PKG_REV="4"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/xbmc/visualization.matrix"
|
|
PKG_URL="https://github.com/xbmc/visualization.matrix/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain kodi-platform glm"
|
|
PKG_SECTION=""
|
|
PKG_LONGDESC="visualization.matrix"
|
|
|
|
PKG_IS_ADDON="yes"
|
|
PKG_ADDON_TYPE="xbmc.player.musicviz"
|
|
|
|
if [ ! "${OPENGL}" = "no" ]; then
|
|
# for OpenGL (GLX) support
|
|
PKG_DEPENDS_TARGET+=" ${OPENGL} glew"
|
|
fi
|
|
|
|
if [ "${OPENGLES_SUPPORT}" = yes ]; then
|
|
# for OpenGL-ES support
|
|
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
|
fi
|