mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
53 lines
2.0 KiB
Makefile
53 lines
2.0 KiB
Makefile
################################################################################
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
#
|
|
# OpenELEC is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# OpenELEC is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
################################################################################
|
|
|
|
PKG_NAME="visualization.shadertoy"
|
|
PKG_VERSION="6d70239"
|
|
PKG_SHA256="6465ed95ed9cc541015226f0c6e99885f743b902478b951e4ff3ce3f660c6b18"
|
|
PKG_REV="2"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/notspiff/visualization.shadertoy"
|
|
PKG_URL="https://github.com/notspiff/visualization.shadertoy/archive/$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain kodi-platform"
|
|
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="$PKG_DEPENDS_TARGET $OPENGL glew"
|
|
fi
|
|
|
|
if [ "$OPENGLES_SUPPORT" = yes ]; then
|
|
# for OpenGL-ES support
|
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET $OPENGLES"
|
|
fi
|
|
|
|
pre_configure_target() {
|
|
if [ "$KODIPLAYER_DRIVER" = bcm2835-driver ]; then
|
|
BCM2835_INCLUDES="-I$SYSROOT_PREFIX/usr/include/interface/vcos/pthreads/ \
|
|
-I$SYSROOT_PREFIX/usr/include/interface/vmcs_host/linux"
|
|
export CFLAGS="$CFLAGS $BCM2835_INCLUDES"
|
|
export CXXFLAGS="$CXXFLAGS $BCM2835_INCLUDES"
|
|
fi
|
|
}
|