Skip to content

Commit

Permalink
Updated by kodi-game-scripting
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear committed Jan 11, 2024
1 parent d3793e8 commit 10eadf7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
buildPlugin(version: "Nexus", platforms: ["android-aarch64", "android-armv7", "osx-x86_64", "windows-i686", "windows-x86_64"])
buildPlugin(version: "Nexus", platforms: ["android-aarch64", "android-armv7", "osx-x86_64", "osx-arm64", "windows-i686", "windows-x86_64"])
7 changes: 6 additions & 1 deletion depends/common/mame2003_plus/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ if(CORE_SYSTEM_NAME STREQUAL windows)
elseif(CORE_SYSTEM_NAME STREQUAL linux)
set(BUILD_COMMAND $(MAKE) -C . -f Makefile platform=unix ${LIBRETRO_DEBUG} GIT_VERSION=)
elseif(CORE_SYSTEM_NAME STREQUAL osx)
set(BUILD_COMMAND $(MAKE) -C . -f Makefile platform=osx ${LIBRETRO_DEBUG} GIT_VERSION=)
if(CPU STREQUAL arm64)
set(ARCH arm)
else()
set(ARCH intel)
endif()
set(BUILD_COMMAND $(MAKE) -C . -f Makefile platform=osx arch=${ARCH} ${LIBRETRO_DEBUG} GIT_VERSION=)
elseif(CORE_SYSTEM_NAME STREQUAL ios OR CORE_SYSTEM_NAME STREQUAL darwin_embedded)
if(CORE_PLATFORM_NAME STREQUAL ios)
set(LIBRETRO_SONAME mame2003_plus_libretro_ios${CMAKE_SHARED_LIBRARY_SUFFIX})
Expand Down
2 changes: 1 addition & 1 deletion depends/common/mame2003_plus/mame2003_plus.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mame2003_plus https://github.com/libretro/mame2003-plus-libretro/archive/59e49400fa6fc95237885c06732dfeef27687dec.tar.gz
mame2003_plus https://github.com/libretro/mame2003-plus-libretro/archive/7af5e18c3cff33d4faa9b4d66e1cf5cd9586fe26.tar.gz
2 changes: 1 addition & 1 deletion depends/windows/mingw/mingw.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fa75120560563a311241c05882016978bd35612692c7f0d39815a27837bff27d
4013a9d5e51b448343efc24fc6a324cc999bb96b4c01b13a6bd3c661bb5c8a82
2 changes: 1 addition & 1 deletion depends/windows/mingw/mingw.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mingw http://mirrors.kodi.tv/build-deps/win32/msys2/msys2-base-x86_64-20231026.tar.xz
mingw http://mirrors.kodi.tv/build-deps/win32/msys2/msys2-base-x86_64-20210725.tar.xz
2 changes: 1 addition & 1 deletion game.libretro.mame2003_plus/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="game.libretro.mame2003_plus"
name="Arcade (MAME 2003-Plus)"
version="0.0.1.78"
version="0.0.1.79"
provider-name="MAMEdev, MAME 2003-Plus Team, et al (see license and changelog)">
<requires>
<import addon="game.libretro" version="1.0.0"/>
Expand Down

0 comments on commit 10eadf7

Please sign in to comment.