mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-21 21:45:39 +00:00
Added Vita3K in the manifest and in "Open Emulator" on Configurator.
This commit is contained in:
parent
48666f41f8
commit
43f4e60214
|
@ -1337,7 +1337,7 @@
|
||||||
<platform>psp</platform>
|
<platform>psp</platform>
|
||||||
<theme>psp</theme>
|
<theme>psp</theme>
|
||||||
</system>
|
</system>
|
||||||
<!--
|
|
||||||
<system>
|
<system>
|
||||||
<name>psvita</name>
|
<name>psvita</name>
|
||||||
<fullname>Sony PlayStation Vita</fullname>
|
<fullname>Sony PlayStation Vita</fullname>
|
||||||
|
@ -1347,7 +1347,7 @@
|
||||||
<platform>psvita</platform>
|
<platform>psvita</platform>
|
||||||
<theme>psvita</theme>
|
<theme>psvita</theme>
|
||||||
</system>
|
</system>
|
||||||
-->
|
|
||||||
<system>
|
<system>
|
||||||
<name>psx</name>
|
<name>psx</name>
|
||||||
<fullname>Sony PlayStation</fullname>
|
<fullname>Sony PlayStation</fullname>
|
||||||
|
|
|
@ -1261,6 +1261,24 @@ modules:
|
||||||
|
|
||||||
# Ryujinx - END
|
# Ryujinx - END
|
||||||
|
|
||||||
|
# Vita3K - START
|
||||||
|
|
||||||
|
- name: Vita3K
|
||||||
|
buildsystem: simple
|
||||||
|
build-commands:
|
||||||
|
- |
|
||||||
|
mkdir -p ${FLATPAK_DEST}/vita3k
|
||||||
|
cp -r * ${FLATPAK_DEST}/vita3k
|
||||||
|
chmod +x ${FLATPAK_DEST}/vita3k/Vita3K
|
||||||
|
rm -f ${FLATPAK_DEST}/vita3k/update-vita3k.sh
|
||||||
|
ln -s ${FLATPAK_DEST}/vita3k/Vita3K /app/bin/Vita3K
|
||||||
|
sources:
|
||||||
|
- type: archive
|
||||||
|
url: https://github.com/Vita3K/Vita3K/releases/download/continuous/ubuntu-latest.zip
|
||||||
|
sha256: VITASHAPLACEHOLDER
|
||||||
|
|
||||||
|
# Vita3K - END
|
||||||
|
|
||||||
# External manifests end
|
# External manifests end
|
||||||
|
|
||||||
- name: retrodeck
|
- name: retrodeck
|
||||||
|
|
|
@ -35,6 +35,7 @@ source /app/libexec/global.sh
|
||||||
# - Primehack
|
# - Primehack
|
||||||
# - RPCS3
|
# - RPCS3
|
||||||
# - Ryujinx
|
# - Ryujinx
|
||||||
|
# - Vita3K
|
||||||
# - XEMU
|
# - XEMU
|
||||||
# - Yuzu
|
# - Yuzu
|
||||||
# - Tools
|
# - Tools
|
||||||
|
@ -441,6 +442,7 @@ configurator_open_emulator_dialog() {
|
||||||
"Primehack" "Open the Metroid Prime emulator Primehack" \
|
"Primehack" "Open the Metroid Prime emulator Primehack" \
|
||||||
"RPCS3" "Open the PS3 emulator RPCS3" \
|
"RPCS3" "Open the PS3 emulator RPCS3" \
|
||||||
"Ryujinx" "Open the Switch emulator Ryujinx" \
|
"Ryujinx" "Open the Switch emulator Ryujinx" \
|
||||||
|
"Vita3K" "Open the PSVita emulator Vita3K" \
|
||||||
"XEMU" "Open the Xbox emulator XEMU" \
|
"XEMU" "Open the Xbox emulator XEMU" \
|
||||||
"Yuzu" "Open the Switch emulator Yuzu")
|
"Yuzu" "Open the Switch emulator Yuzu")
|
||||||
|
|
||||||
|
@ -490,6 +492,10 @@ configurator_open_emulator_dialog() {
|
||||||
ryujinx-wrapper
|
ryujinx-wrapper
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"Vita3K" )
|
||||||
|
Vita3K
|
||||||
|
;;
|
||||||
|
|
||||||
"XEMU" )
|
"XEMU" )
|
||||||
xemu
|
xemu
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue