609de5f8e8
* Update emulators and cores. * Adds fake08, thanks to Lakka-LibreELEC. * Adds GPU power saving option for handheld builds. * Updates SDL2, reverts Mesa (may be temporary). * Improves fan curve for supported devices.
32 lines
996 B
Makefile
32 lines
996 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
|
|
# Maintenance 2020 351ELEC team (https://github.com/fewtarius/351ELEC)
|
|
|
|
PKG_NAME="swanstation"
|
|
PKG_VERSION="f2e335bfd4751410dfb24d933f762b9a4fd7fdeb"
|
|
PKG_ARCH=""
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_SITE="https://github.com/libretro/swanstation"
|
|
PKG_URL="$PKG_SITE/archive/$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain nasm:host"
|
|
PKG_SECTION="libretro"
|
|
PKG_SHORTDESC="SwanStation - PlayStation 1, aka. PSX Emulator"
|
|
PKG_TOOLCHAIN="cmake"
|
|
PKG_BUILD_FLAGS="-lto"
|
|
|
|
if [ ! "${OPENGL}" = "no" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGL} glu libglvnd"
|
|
fi
|
|
|
|
if [ "${OPENGLES_SUPPORT}" = yes ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
|
fi
|
|
|
|
pre_configure_target() {
|
|
PKG_CMAKE_OPTS_TARGET+=" -DCMAKE_BUILD_TYPE=Release -DBUILD_LIBRETRO_CORE=ON "
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/usr/lib/libretro
|
|
cp $PKG_BUILD/.$TARGET_NAME/swanstation_libretro.so $INSTALL/usr/lib/libretro/
|
|
}
|