mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
- inputstream.adaptive: update 2.6.18-Matrix to 2.6.22-Matrix - inputstream.ffmpegdirect: update 1.21.6-Matrix to 1.21.8-Matrix - pvr.hts: update 8.3.3-Matrix to 8.3.4-Matrix - pvr.vuplus: update 7.4.7-Matrix to 7.4.9-Matrix - visualization.shadertoy: update 2.3.0-Matrix to 19.0.0-Matrix - visualization.spectrum: update 3.4.0-Matrix to 19.0.0-Matrix - visualization.starburst: update 2.4.0-Matrix to 19.0.0-Matrix - visualization.waveform: update 4.4.0-Matrix to 19.0.0-Matrix
30 lines
918 B
Makefile
30 lines
918 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="visualization.shadertoy"
|
|
PKG_VERSION="19.0.0-Matrix"
|
|
PKG_SHA256="6c106c0d8e53f9b0794291a1c53e9a00370ff79be73919d556048dce0bb9785c"
|
|
PKG_REV="1"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/xbmc/visualization.shadertoy"
|
|
PKG_URL="https://github.com/xbmc/visualization.shadertoy/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain kodi-platform glm"
|
|
PKG_SECTION=""
|
|
PKG_SHORTDESC="visualization.shadertoy"
|
|
PKG_LONGDESC="visualization.shadertoy"
|
|
|
|
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
|