mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-02-07 15:09:52 +00:00
30 lines
910 B
Makefile
30 lines
910 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="screensaver.shadertoy"
|
|
PKG_VERSION="21.0.2-Omega"
|
|
PKG_SHA256="90ef1c38afcc6c2d03a06946148a3a87ec01b1ffb5c2bb794af46da0a1309d96"
|
|
PKG_REV="1"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/xbmc/screensaver.shadertoy"
|
|
PKG_URL="https://github.com/xbmc/screensaver.shadertoy/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain kodi-platform glm"
|
|
PKG_SECTION=""
|
|
PKG_SHORTDESC="screensaver.shadertoy"
|
|
PKG_LONGDESC="screensaver.shadertoy"
|
|
|
|
PKG_IS_ADDON="yes"
|
|
PKG_ADDON_TYPE="xbmc.ui.screensaver"
|
|
|
|
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
|