distribution/packages/graphics/SDL/package.mk

109 lines
5.1 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="SDL"
PKG_VERSION="d6200ed"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="https://www.libsdl.org/"
PKG_URL="https://github.com/libsdl-org/SDL-1.2/archive/${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain yasm:host alsa-lib systemd dbus SDL:host"
PKG_SECTION="multimedia"
PKG_SHORTDESC="SDL: A cross-platform Graphic API"
PKG_LONGDESC="Simple DirectMedia Layer is a cross-platform multimedia library designed to provide fast access to the graphics framebuffer and audio device. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of 'Civilization: Call To Power.' Simple DirectMedia Layer supports Linux, Win32, BeOS, MacOS, Solaris, IRIX, and FreeBSD."
PKG_IS_ADDON="no"
PKG_USE_CMAKE="no"
PKG_AUTORECONF="no"
PKG_CONFIGURE_OPTS_TARGET="--enable-shared \
--enable-libc \
--enable-gcc-atomics \
--enable-atomic \
--enable-audio \
--enable-render \
--enable-events \
--enable-joystick \
--enable-haptic \
--enable-power \
--enable-filesystem \
--enable-threads \
--enable-timers \
--enable-file \
--enable-loadso \
--enable-cpuinfo \
--enable-assembly \
--disable-altivec \
--disable-oss \
--enable-alsa --disable-alsatest --enable-alsa-shared \
--with-alsa-prefix=${SYSROOT_PREFIX}/usr/lib \
--with-alsa-inc-prefix=${SYSROOT_PREFIX}/usr/include \
--disable-esd --disable-esdtest --disable-esd-shared \
--disable-arts --disable-arts-shared \
--disable-nas --enable-nas-shared \
--disable-sndio --enable-sndio-shared \
--disable-diskaudio \
--disable-dummyaudio \
--disable-video-wayland --enable-video-wayland-qt-touch --disable-wayland-shared \
--disable-video-mir --disable-mir-shared \
--disable-video-cocoa \
--enable-video-directfb --enable-directfb-shared \
--disable-fusionsound --disable-fusionsound-shared \
--disable-video-dummy \
--enable-libudev \
--enable-dbus \
--disable-input-tslib \
--enable-pthreads --enable-pthread-sem \
--disable-directx \
--enable-sdl-dlopen \
--disable-clock_gettime \
--disable-rpath \
--disable-render-d3d \
--enable-arm-neon"
if [ ! "$OPENGL" = "no" ]; then
PKG_DEPENDS_TARGET="${PKG_DEPENDS_TARGET} $OPENGL glu"
PKG_CONFIGURE_OPTS_TARGET="${PKG_CONFIGURE_OPTS_TARGET} --enable-video-opengl --disable-video-opengles"
else
PKG_CONFIGURE_OPTS_TARGET="${PKG_CONFIGURE_OPTS_TARGET} --disable-video-opengl --enable-video-opengles --enable-video-fbcon"
fi
if [ "${DISPLAYSERVER}" = "wl" ]; then
PKG_DEPENDS_TARGET+=" wayland ${WINDOWMANAGER}"
PKG_CONFIGURE_OPTS_TARGET+=" --enable-video-wayland --enable-video-wayland-qt-touch --enable-wayland-shared"
fi
if [ "$PULSEAUDIO_SUPPORT" = yes ]; then
PKG_DEPENDS_TARGET="${PKG_DEPENDS_TARGET} pulseaudio"
PKG_CONFIGURE_OPTS_TARGET="${PKG_CONFIGURE_OPTS_TARGET} --enable-pulseaudio --enable-pulseaudio-shared"
else
PKG_CONFIGURE_OPTS_TARGET="${PKG_CONFIGURE_OPTS_TARGET} --disable-pulseaudio --disable-pulseaudio-shared"
fi
pre_make_target() {
# dont build parallel
MAKEFLAGS=-j1
}
post_makeinstall_target() {
sed -i "s:\(['=\" ]\)/usr:\\1${SYSROOT_PREFIX}/usr:g" ${SYSROOT_PREFIX}/usr/bin/sdl-config
rm -rf ${INSTALL}/usr/bin
}