mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-01 15:07:49 +00:00
Merge pull request #5152 from CvH/10.0/drop-retro
drop unused retroplayer addons
This commit is contained in:
commit
cdef3710a0
@ -1,21 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="libretro-4do"
|
||||
PKG_VERSION="da814a868c41fb47f265e04e5f95756cda62e5c2"
|
||||
PKG_SHA256="6a3ec326d35ae55fa4e749c600d9eb538fb7c1c3b9ffd1fa1ac6064f4bf5e7b4"
|
||||
PKG_LICENSE="LGPL"
|
||||
PKG_SITE="https://github.com/libretro/4do-libretro"
|
||||
PKG_URL="https://github.com/libretro/4do-libretro/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain"
|
||||
PKG_LONGDESC="Port of 4DO/libfreedo to libretro."
|
||||
|
||||
PKG_LIBNAME="4do_libretro.so"
|
||||
PKG_LIBPATH="${PKG_LIBNAME}"
|
||||
PKG_LIBVAR="4DO_LIB"
|
||||
|
||||
makeinstall_target() {
|
||||
mkdir -p ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}
|
||||
cp ${PKG_LIBPATH} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME}
|
||||
echo "set(${PKG_LIBVAR} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME})" > ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}/${PKG_NAME}-config.cmake
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
diff -Naur a/Makefile b/Makefile
|
||||
--- a/Makefile 2017-07-01 22:16:40.000000000 -0700
|
||||
+++ b/Makefile 2017-07-14 09:55:45.714816515 -0700
|
||||
@@ -37,8 +37,6 @@
|
||||
endif
|
||||
|
||||
ifneq (,$(findstring unix,$(platform)))
|
||||
- AR = ${CC_PREFIX}ar
|
||||
- CC = ${CC_PREFIX}gcc
|
||||
|
||||
TARGET := $(TARGET_NAME)_libretro.so
|
||||
fpic := -fPIC
|
@ -1,42 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="libretro-fbalpha"
|
||||
PKG_VERSION="3edb7789803aaefeb34907f8dfec9d5bf26486ed"
|
||||
PKG_SHA256="3cd1b78fd1b253c798cd2ed1948e5d5ec4d481a398c323435108b3c3f5e29dab"
|
||||
PKG_LICENSE="GPLv3"
|
||||
PKG_SITE="https://github.com/libretro/fbalpha"
|
||||
PKG_URL="https://github.com/libretro/fbalpha/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain kodi-platform"
|
||||
PKG_LONGDESC="game.libretro.fba: fba for Kodi"
|
||||
PKG_TOOLCHAIN="make"
|
||||
|
||||
PKG_LIBNAME="fbalpha_libretro.so"
|
||||
PKG_LIBPATH="${PKG_LIBNAME}"
|
||||
PKG_LIBVAR="FBALPHA_LIB"
|
||||
|
||||
pre_make_target() {
|
||||
PKG_MAKE_OPTS_TARGET="-f makefile.libretro CC=${CC} CXX=${CXX} GIT_VERSION=${PKG_VERSION:0:7}"
|
||||
|
||||
if [ "${PROJECT}" = "RPi" ]; then
|
||||
case ${DEVICE} in
|
||||
RPi)
|
||||
PKG_MAKE_OPTS_TARGET+=" platform=armv"
|
||||
;;
|
||||
RPi2)
|
||||
PKG_MAKE_OPTS_TARGET+=" platform=rpi2"
|
||||
;;
|
||||
esac
|
||||
else
|
||||
# NEON Support ?
|
||||
if target_has_feature neon; then
|
||||
PKG_MAKE_OPTS_TARGET+=" HAVE_NEON=1"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
makeinstall_target() {
|
||||
mkdir -p ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}
|
||||
cp ${PKG_LIBPATH} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME}
|
||||
echo "set(${PKG_LIBVAR} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME})" > ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}/${PKG_NAME}-config.cmake
|
||||
}
|
@ -1,52 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="libretro-mupen64plus"
|
||||
PKG_VERSION="b21e3292e6ff7afb954d4871362ab6e6473d680f"
|
||||
PKG_SHA256="2bc4424ac80ee03d248d261908a857dc1e0ae919704830e1629cd111a9acc91e"
|
||||
PKG_LICENSE="GPLv2"
|
||||
PKG_SITE="https://github.com/libretro/mupen64plus-libretro"
|
||||
PKG_URL="https://github.com/libretro/mupen64plus-libretro/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain kodi-platform"
|
||||
PKG_LONGDESC="game.libretro.mupen64plus: Mupen64Plus for Kodi"
|
||||
|
||||
PKG_LIBNAME="mupen64plus_libretro.so"
|
||||
PKG_LIBPATH="${PKG_LIBNAME}"
|
||||
PKG_LIBVAR="MUPEN64PLUS_LIB"
|
||||
|
||||
make_target() {
|
||||
|
||||
if target_has_feature neon; then
|
||||
export HAVE_NEON=1
|
||||
fi
|
||||
|
||||
if [ -z "${DEVICE}" ]; then
|
||||
PKG_DEVICE_NAME=${PROJECT}
|
||||
else
|
||||
PKG_DEVICE_NAME=${DEVICE}
|
||||
fi
|
||||
|
||||
case ${PKG_DEVICE_NAME} in
|
||||
RPi|RPi2)
|
||||
make platform=${PKG_DEVICE_NAME,,}
|
||||
;;
|
||||
Generic)
|
||||
make WITH_DYNAREC=x86_64
|
||||
;;
|
||||
*)
|
||||
if [[ "${TARGET_CPU}" = "cortex-a9" ]] || [[ "${TARGET_CPU}" = *"cortex-a53" ]] || [[ "${TARGET_CPU}" = "cortex-a17" ]]; then
|
||||
if [ "${TARGET_ARCH}" = "aarch64" ]; then
|
||||
make platform=aarch64
|
||||
else
|
||||
make platform=linux-gles FORCE_GLES=1 WITH_DYNAREC=arm
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
makeinstall_target() {
|
||||
mkdir -p ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}
|
||||
cp ${PKG_LIBPATH} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME}
|
||||
echo "set(${PKG_LIBVAR} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME})" > ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}/${PKG_NAME}-config.cmake
|
||||
}
|
@ -1,104 +0,0 @@
|
||||
diff -Naur a/libretro-common/libco/amd64.c b/libretro-common/libco/amd64.c
|
||||
--- a/libretro-common/libco/amd64.c 2016-05-08 08:20:29.000000000 -0700
|
||||
+++ b/libretro-common/libco/amd64.c 2016-05-10 14:58:50.221637488 -0700
|
||||
@@ -5,7 +5,7 @@
|
||||
*/
|
||||
|
||||
#define LIBCO_C
|
||||
-#include <libco.h>
|
||||
+#include "libco.h"
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
@@ -21,6 +21,8 @@
|
||||
static thread_local cothread_t co_active_handle = 0;
|
||||
#ifndef CO_USE_INLINE_ASM
|
||||
static void (*co_swap)(cothread_t, cothread_t) = 0;
|
||||
+#else
|
||||
+void co_swap(cothread_t, cothread_t);
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
@@ -81,7 +83,7 @@
|
||||
sizeof(co_swap_function), PAGE_EXECUTE_READWRITE, &old_privileges);
|
||||
}
|
||||
#else
|
||||
-/* ABI: SystemV */
|
||||
+//ABI: SystemV
|
||||
#ifndef CO_USE_INLINE_ASM
|
||||
static unsigned char co_swap_function[] = {
|
||||
0x48, 0x89, 0x26, /* mov [rsi],rsp */
|
||||
@@ -113,7 +115,29 @@
|
||||
mprotect((void*)base, size, PROT_READ | PROT_WRITE | PROT_EXEC);
|
||||
}
|
||||
#else
|
||||
-void co_init(void) {}
|
||||
+__asm__(
|
||||
+".intel_syntax noprefix\n"
|
||||
+".globl co_swap \n"
|
||||
+"co_swap: \n"
|
||||
+".globl _co_swap \n" /* OSX ABI is different from Linux. */
|
||||
+"_co_swap: \n"
|
||||
+"mov [rsi],rsp \n"
|
||||
+"mov [rsi+0x08],rbp \n"
|
||||
+"mov [rsi+0x10],rbx \n"
|
||||
+"mov [rsi+0x18],r12 \n"
|
||||
+"mov [rsi+0x20],r13 \n"
|
||||
+"mov [rsi+0x28],r14 \n"
|
||||
+"mov [rsi+0x30],r15 \n"
|
||||
+"mov rsp,[rdi] \n"
|
||||
+"mov rbp,[rdi+0x08] \n"
|
||||
+"mov rbx,[rdi+0x10] \n"
|
||||
+"mov r12,[rdi+0x18] \n"
|
||||
+"mov r13,[rdi+0x20] \n"
|
||||
+"mov r14,[rdi+0x28] \n"
|
||||
+"mov r15,[rdi+0x30] \n"
|
||||
+"ret \n"
|
||||
+".att_syntax \n"
|
||||
+);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -162,42 +186,11 @@
|
||||
free(handle);
|
||||
}
|
||||
|
||||
-#ifndef CO_USE_INLINE_ASM
|
||||
void co_switch(cothread_t handle)
|
||||
{
|
||||
register cothread_t co_previous_handle = co_active_handle;
|
||||
co_swap(co_active_handle = handle, co_previous_handle);
|
||||
}
|
||||
-#else
|
||||
-#ifdef __APPLE__
|
||||
-#define ASM_PREFIX "_"
|
||||
-#else
|
||||
-#define ASM_PREFIX ""
|
||||
-#endif
|
||||
-__asm__(
|
||||
-".intel_syntax noprefix \n"
|
||||
-".globl " ASM_PREFIX "co_switch \n"
|
||||
-ASM_PREFIX "co_switch: \n"
|
||||
-"mov rsi, [rip+" ASM_PREFIX "co_active_handle]\n"
|
||||
-"mov [rsi],rsp \n"
|
||||
-"mov [rsi+0x08],rbp \n"
|
||||
-"mov [rsi+0x10],rbx \n"
|
||||
-"mov [rsi+0x18],r12 \n"
|
||||
-"mov [rsi+0x20],r13 \n"
|
||||
-"mov [rsi+0x28],r14 \n"
|
||||
-"mov [rsi+0x30],r15 \n"
|
||||
-"mov [rip+" ASM_PREFIX "co_active_handle], rdi\n"
|
||||
-"mov rsp,[rdi] \n"
|
||||
-"mov rbp,[rdi+0x08] \n"
|
||||
-"mov rbx,[rdi+0x10] \n"
|
||||
-"mov r12,[rdi+0x18] \n"
|
||||
-"mov r13,[rdi+0x20] \n"
|
||||
-"mov r14,[rdi+0x28] \n"
|
||||
-"mov r15,[rdi+0x30] \n"
|
||||
-"ret \n"
|
||||
-".att_syntax \n"
|
||||
-);
|
||||
-#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
diff -Naur a/Makefile b/Makefile
|
||||
--- a/Makefile 2016-05-08 08:20:29.000000000 -0700
|
||||
+++ b/Makefile 2016-05-10 15:08:05.548597094 -0700
|
||||
@@ -304,6 +304,17 @@
|
||||
CPUFLAGS += -mfloat-abi=hard
|
||||
endif
|
||||
|
||||
+# aarch64
|
||||
+else ifneq (,$(findstring aarch64,$(platform)))
|
||||
+ TARGET := $(TARGET_NAME)_libretro.so
|
||||
+ LDFLAGS += -shared -Wl,--version-script=$(LIBRETRO_DIR)/link.T -Wl,--no-undefined
|
||||
+ fpic := -fPIC
|
||||
+# CPUFLAGS += -DNO_ASM -DARM -D__arm__ -DARM_ASM -DNOSSE
|
||||
+ WITH_DYNAREC=arm64
|
||||
+# PLATCFLAGS += -DARM
|
||||
+ GLES = 1
|
||||
+ GL_LIB := -lGLESv2
|
||||
+
|
||||
# emscripten
|
||||
else ifeq ($(platform), emscripten)
|
||||
TARGET := $(TARGET_NAME)_libretro_emscripten.bc
|
@ -1,39 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="libretro-reicast"
|
||||
PKG_VERSION="9d6f80ee347f99a7a8162032de59834e03b64016"
|
||||
PKG_SHA256="94b20bb11d17b987a15a06f67cd87ae8957c6c1a71b07c1cbc2bceb045226d4c"
|
||||
PKG_LICENSE="GPLv2"
|
||||
PKG_SITE="https://github.com/libretro/reicast-emulator"
|
||||
PKG_URL="https://github.com/libretro/reicast-emulator/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain kodi-platform"
|
||||
PKG_LONGDESC="Reicast is a multiplatform Sega Dreamcast emulator"
|
||||
|
||||
PKG_LIBNAME="reicast_libretro.so"
|
||||
PKG_LIBPATH="${PKG_LIBNAME}"
|
||||
PKG_LIBVAR="REICAST_LIB"
|
||||
|
||||
make_target() {
|
||||
if [ "${DEVICE}" = "RPi2" ]; then
|
||||
make platform=${DEVICE,,}
|
||||
else
|
||||
case ${TARGET_CPU} in
|
||||
arm1176jzf-s)
|
||||
make platform=arm FORCE_GLES=1
|
||||
;;
|
||||
cortex-a7|cortex-a9)
|
||||
make platform=armv7-neon-hardfloat-${TARGET_CPU} FORCE_GLES=1
|
||||
;;
|
||||
x86-64)
|
||||
make
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
||||
makeinstall_target() {
|
||||
mkdir -p ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}
|
||||
cp ${PKG_LIBPATH} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME}
|
||||
echo "set(${PKG_LIBVAR} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME})" > ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}/${PKG_NAME}-config.cmake
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="libretro-vram-test"
|
||||
PKG_VERSION="6b90ce965b08cc1d6a94b4f3916b5114167db498"
|
||||
PKG_SHA256="2bd1b3af783a028355eb4b4c416f09802313a9a69759e716377b55012f7bb4ae"
|
||||
PKG_LICENSE="MIT"
|
||||
PKG_SITE="https://github.com/libretro/libretro-samples"
|
||||
PKG_URL="https://github.com/libretro/libretro-samples/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain"
|
||||
PKG_LONGDESC="VRAM Test from libretro"
|
||||
PKG_TOOLCHAIN="manual"
|
||||
|
||||
PKG_LIBNAME="testsw_vram_libretro.so"
|
||||
PKG_LIBVAR="VRAM-TEST_LIB"
|
||||
|
||||
configure_package() {
|
||||
PKG_LIBPATH="${PKG_BUILD}/video/software/rendering_direct_to_vram/${PKG_LIBNAME}"
|
||||
}
|
||||
|
||||
make_target() {
|
||||
cd ${PKG_BUILD}/video/software/rendering_direct_to_vram
|
||||
make
|
||||
}
|
||||
|
||||
makeinstall_target() {
|
||||
mkdir -p ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}
|
||||
cp ${PKG_LIBPATH} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME}
|
||||
echo "set(${PKG_LIBVAR} ${SYSROOT_PREFIX}/usr/lib/${PKG_LIBNAME})" > ${SYSROOT_PREFIX}/usr/lib/cmake/${PKG_NAME}/${PKG_NAME}-config.cmake
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="game.libretro.4do"
|
||||
PKG_VERSION="1.3.2.8-Leia"
|
||||
PKG_SHA256="b5f847e6809f686c9cfdaeb5f7636da36111c98a74a8abbf58d20ea16d33aa31"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="https://github.com/kodi-game/game.libretro.4do"
|
||||
PKG_URL="https://github.com/kodi-game/game.libretro.4do/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain kodi-platform libretro-4do"
|
||||
PKG_SECTION=""
|
||||
PKG_LONGDESC="game.libretro.4do: 4DO for Kodi"
|
||||
|
||||
PKG_IS_ADDON="yes"
|
||||
PKG_ADDON_TYPE="kodi.gameclient"
|
@ -1,17 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="game.libretro.fbalpha"
|
||||
PKG_VERSION="0.2.97.13-Leia"
|
||||
PKG_SHA256="e6f2fadb341554937800016e08d87e5a2864106ea7b39485b5dad4faa4d5b7c8"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="https://github.com/kodi-game/game.libretro.fbalpha"
|
||||
PKG_URL="https://github.com/kodi-game/game.libretro.fbalpha/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain kodi-platform libretro-fbalpha"
|
||||
PKG_SECTION=""
|
||||
PKG_LONGDESC="game.libretro.fbalpha: fba for Kodi"
|
||||
|
||||
PKG_IS_ADDON="yes"
|
||||
PKG_ADDON_TYPE="kodi.gameclient"
|
@ -1,24 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="game.libretro.mame2014"
|
||||
PKG_VERSION="1.0"
|
||||
PKG_REV="106"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPLv2"
|
||||
PKG_SITE=""
|
||||
PKG_URL=""
|
||||
PKG_DEPENDS_TARGET="toolchain"
|
||||
PKG_SECTION=""
|
||||
PKG_SHORTDESC="Arcade (MAME 2014): Add-on removed"
|
||||
PKG_LONGDESC="Arcade (MAME 2014) Add-on removed"
|
||||
PKG_TOOLCHAIN="manual"
|
||||
|
||||
PKG_ADDON_BROKEN="Arcade (MAME 2014) is superseeded by Arcade (MAME 2015)"
|
||||
|
||||
PKG_IS_ADDON="yes"
|
||||
PKG_ADDON_TYPE="xbmc.broken"
|
||||
|
||||
addon() {
|
||||
:
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="game.libretro.mupen64plus"
|
||||
PKG_VERSION="2.5.0.6-Leia"
|
||||
PKG_SHA256="bad6dd3e677ac1fa897bbad2508e3e3c1b90f0ac390fadac6cd967863557e8ad"
|
||||
PKG_REV="115"
|
||||
# no openGL suport in retroplayer yet
|
||||
PKG_ARCH="none"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="https://github.com/kodi-game/game.libretro.mupen64plus"
|
||||
PKG_URL="https://github.com/kodi-game/game.libretro.mupen64plus/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain kodi-platform libretro-mupen64plus"
|
||||
PKG_SECTION=""
|
||||
PKG_LONGDESC="game.libretro.mupen64plus: Mupen 64 Plus emulator for Kodi"
|
||||
|
||||
PKG_IS_ADDON="yes"
|
||||
PKG_ADDON_TYPE="kodi.gameclient"
|
@ -1,18 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="game.libretro.reicast"
|
||||
PKG_VERSION="0.1.0.14-Leia"
|
||||
PKG_SHA256="dd3375187813284ce2c4b34636cf08583b96cfa77b7f785d1c861125926bbec0"
|
||||
PKG_REV="1"
|
||||
# no openGL suport in retroplayer yet
|
||||
PKG_ARCH="none"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="https://github.com/kodi-game/game.libretro.reicast"
|
||||
PKG_URL="https://github.com/kodi-game/game.libretro.reicast/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain kodi-platform libretro-reicast"
|
||||
PKG_SECTION=""
|
||||
PKG_LONGDESC="game.libretro.reicast: reicast for Kodi"
|
||||
|
||||
PKG_IS_ADDON="yes"
|
||||
PKG_ADDON_TYPE="kodi.gameclient"
|
@ -1,17 +0,0 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="game.libretro.vram-test"
|
||||
PKG_VERSION="92e114661d10b508aaa578a54afb5fb6c4f03ec0"
|
||||
PKG_SHA256="ab866d1cc455c4fdba6f67b44dff850cd6e713c964ef0afd366d3ee526504288"
|
||||
PKG_REV="101"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="https://github.com/kodi-game/game.libretro.vram-test"
|
||||
PKG_URL="https://github.com/kodi-game/game.libretro.vram-test/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain kodi-platform libretro-vram-test"
|
||||
PKG_SECTION=""
|
||||
PKG_LONGDESC="game.libretro.vram-test: vram-test emulator for Kodi"
|
||||
|
||||
PKG_IS_ADDON="yes"
|
||||
PKG_ADDON_TYPE="kodi.gameclient"
|
Loading…
x
Reference in New Issue
Block a user