emulation: libretro-desmume changed to active mantained project.

This commit is contained in:
CGarces 2017-10-29 22:09:32 +01:00 committed by Carlos Garces
parent df82e2b77d
commit bf435abfbf

View File

@ -17,32 +17,32 @@
################################################################################ ################################################################################
PKG_NAME="libretro-desmume" PKG_NAME="libretro-desmume"
PKG_VERSION="1dd58e4" PKG_VERSION="9464582"
PKG_SHA256="0cc647defbbfbe0995e4dfe825e5bf67345ad1f9d8e7e29cdb94c32032c490c4" PKG_SHA256="706af70135e1a33845d1b24163b9ab496f61219c958598d90d2283f6b4ee79b9"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPLv2" PKG_LICENSE="GPLv2"
PKG_SITE="https://github.com/libretro/desmume-libretro" PKG_SITE="https://github.com/libretro/desmume"
PKG_URL="https://github.com/libretro/desmume-libretro/archive/$PKG_VERSION.tar.gz" PKG_URL="https://github.com/libretro/desmume/archive/$PKG_VERSION.tar.gz"
PKG_SOURCE_DIR="desmume-libretro-$PKG_VERSION*" PKG_SOURCE_DIR="desmume-$PKG_VERSION*"
PKG_DEPENDS_TARGET="toolchain kodi-platform" PKG_DEPENDS_TARGET="toolchain kodi-platform"
PKG_SECTION="emulation" PKG_SECTION="emulation"
PKG_SHORTDESC="libretro wrapper for desmume NDS emulator." PKG_SHORTDESC="libretro wrapper for desmume NDS emulator."
PKG_LONGDESC="libretro wrapper for desmume NDS emulator." PKG_LONGDESC="libretro wrapper for desmume NDS emulator."
PKG_LIBNAME="desmume_libretro.so" PKG_LIBNAME="desmume_libretro.so"
PKG_LIBPATH="$PKG_LIBNAME" PKG_LIBPATH="desmume/$PKG_LIBNAME"
PKG_LIBVAR="DESMUME_LIB" PKG_LIBVAR="DESMUME_LIB"
make_target() { make_target() {
case $TARGET_CPU in case $TARGET_CPU in
arm1176jzf-s) arm1176jzf-s)
make -f Makefile.libretro platform=armv6-hardfloat-$TARGET_CPU make -C desmume -f Makefile.libretro platform=armv6-hardfloat-$TARGET_CPU
;; ;;
cortex-a7|cortex-a9) cortex-a7|cortex-a9)
make -f Makefile.libretro platform=armv7-neon-hardfloat-$TARGET_CPU make -C desmume -f Makefile.libretro platform=armv7-neon-hardfloat-$TARGET_CPU
;; ;;
x86-64) x86-64)
make -f Makefile.libretro make -C desmume -f Makefile.libretro
;; ;;
esac esac
} }