distribution/packages/games/emulators/flycastsa/package.mk

31 lines
1 KiB
Makefile
Raw Normal View History

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2021-present Shanti Gilbert (https://github.com/shantigilbert)
2022-04-13 12:57:00 +00:00
# Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
2022-05-27 22:33:28 +00:00
# Copyright (C) 2022-present Fewtarius
PKG_NAME="flycastsa"
2022-05-18 11:28:10 +00:00
PKG_VERSION="baab70c509093dcd2f64ccbc53935c06fb5ac9f9"
PKG_LICENSE="GPLv2"
PKG_SITE="https://github.com/flyinghead/flycast"
2022-04-29 08:44:15 +00:00
PKG_URL="${PKG_SITE}.git"
PKG_DEPENDS_TARGET="toolchain ${OPENGLES} alsa SDL2 libzip zip"
PKG_LONGDESC="Flycast is a multiplatform Sega Dreamcast, Naomi and Atomiswave emulator"
PKG_TOOLCHAIN="cmake"
2022-05-27 22:33:28 +00:00
PKG_PATCH_DIRS+="${DEVICE}"
pre_configure_target() {
export CXXFLAGS="${CXXFLAGS} -Wno-error=array-bounds"
2022-04-13 18:18:39 +00:00
PKG_CMAKE_OPTS_TARGET+="-DUSE_GLES=ON \
-DUSE_VULKAN=OFF \
-DUSE_OPENMP=ON"
}
makeinstall_target() {
2022-04-29 08:44:15 +00:00
mkdir -p ${INSTALL}/usr/bin
cp ${PKG_BUILD}/.${TARGET_NAME}/flycast ${INSTALL}/usr/bin/flycast
cp ${PKG_DIR}/scripts/* ${INSTALL}/usr/bin
2022-04-29 08:44:15 +00:00
chmod +x ${INSTALL}/usr/bin/start_flycastsa.sh
chmod +x ${INSTALL}/usr/bin/set_flycast_joy.sh
}