29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2019-present Team CoreELEC (https://coreelec.org)
|
|
|
|
PKG_NAME="neocd_libretro"
|
|
PKG_VERSION="b7d96e794f2dfa500cba46c78cbc3c28349cfd05"
|
|
PKG_REV="1"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="LGPLv3.0"
|
|
PKG_SITE="https://github.com/libretro/neocd_libretro"
|
|
PKG_URL="$PKG_SITE.git"
|
|
PKG_DEPENDS_TARGET="toolchain flac libogg libvorbis"
|
|
PKG_PRIORITY="optional"
|
|
PKG_SECTION="libretro"
|
|
PKG_SHORTDESC="Neo Geo CD emulator for libretro "
|
|
PKG_LONGDESC="NeoCD-Libretro is a complete rewrite of NeoCD from scratch in modern C++11. It is designed with accuracy and portability in mind rather than being all about speed like the the older versions. The goal is also to document all I know about the platform in the source code so other emulator authors can make their own implementations."
|
|
PKG_IS_ADDON="no"
|
|
PKG_TOOLCHAIN="make"
|
|
PKG_AUTORECONF="no"
|
|
GET_HANDLER_SUPPORT="git"
|
|
|
|
make_target() {
|
|
cd $PKG_BUILD
|
|
CFLAGS=$CFLAGS CXXFLAGS="$CXXFLAGS" CXX="$CXX" CC="$CC" LD="$LD" RANLIB="$RANLIB" AR="$AR" make
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/usr/lib/libretro
|
|
cp $PKG_BUILD/neocd_libretro.so $INSTALL/usr/lib/libretro/
|
|
}
|