mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
12 lines
463 B
Text
12 lines
463 B
Text
INFO="Batocera|Independent||https://batocera.org/|Retro-gaming distribution with the aim of turning any computer/nano computer into a gaming console during a game or permanently.";;
|
|
|
|
function releases_batocera() {
|
|
echo latest
|
|
}
|
|
|
|
function get_batocera() {
|
|
local HASH=""
|
|
local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/last"
|
|
local ISO="$(curl -sl ${URL}/ | grep -e 'batocera.*img.gz'|cut -d\" -f2)"
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|