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>
|
||||
<theme>psp</theme>
|
||||
</system>
|
||||
<!--
|
||||
|
||||
<system>
|
||||
<name>psvita</name>
|
||||
<fullname>Sony PlayStation Vita</fullname>
|
||||
|
@ -1347,7 +1347,7 @@
|
|||
<platform>psvita</platform>
|
||||
<theme>psvita</theme>
|
||||
</system>
|
||||
-->
|
||||
|
||||
<system>
|
||||
<name>psx</name>
|
||||
<fullname>Sony PlayStation</fullname>
|
||||
|
|
|
@ -1261,6 +1261,24 @@ modules:
|
|||
|
||||
# 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
|
||||
|
||||
- name: retrodeck
|
||||
|
|
|
@ -35,6 +35,7 @@ source /app/libexec/global.sh
|
|||
# - Primehack
|
||||
# - RPCS3
|
||||
# - Ryujinx
|
||||
# - Vita3K
|
||||
# - XEMU
|
||||
# - Yuzu
|
||||
# - Tools
|
||||
|
@ -441,6 +442,7 @@ configurator_open_emulator_dialog() {
|
|||
"Primehack" "Open the Metroid Prime emulator Primehack" \
|
||||
"RPCS3" "Open the PS3 emulator RPCS3" \
|
||||
"Ryujinx" "Open the Switch emulator Ryujinx" \
|
||||
"Vita3K" "Open the PSVita emulator Vita3K" \
|
||||
"XEMU" "Open the Xbox emulator XEMU" \
|
||||
"Yuzu" "Open the Switch emulator Yuzu")
|
||||
|
||||
|
@ -490,6 +492,10 @@ configurator_open_emulator_dialog() {
|
|||
ryujinx-wrapper
|
||||
;;
|
||||
|
||||
"Vita3K" )
|
||||
Vita3K
|
||||
;;
|
||||
|
||||
"XEMU" )
|
||||
xemu
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue