Install BizHawk and Archipelago

This commit is contained in:
2025-11-15 14:26:17 -05:00
parent bdef34c4be
commit bdfdf10f9c
6 changed files with 50 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
[Desktop Entry]
Type=Application
Name="Archipelago"
GenericName="Archipelago"
Exec=/opt/Archipelago/ArchipelagoLauncher
Categories=Game;
StartupNotify=false

View File

@@ -0,0 +1,7 @@
[Desktop Entry]
Type=Application
Name="Bizhawk"
GenericName="Bizhawk"
Exec=/opt/BizHawk/EmuHawkMono.sh
Categories=Game;
StartupNotify=false

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -xeuo pipefail
version="0.6.4"
name="Archipelago_${version}_linux-x86_64"
tarball="${name}.tar.gz"
curl -sSfL "https://github.com/ArchipelagoMW/Archipelago/releases/download/${version}/${tarball}" -o "/tmp/${tarball}"
tar xvf "/tmp/${tarball}" -C /opt/
rm -f "/tmp/${tarball}"

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -xeuo pipefail
version="2.10"
name="BizHawk-${version}-linux-x64"
tarball="${name}.tar.gz"
curl -sSfL "https://github.com/TASEmulators/BizHawk/releases/download/${version}/${tarball}" -o "/tmp/${tarball}"
mkdir -p /opt/BizHawk/
tar xvf "/tmp/${tarball}" -C /opt/BizHawk/
rm -f "/tmp/${tarball}"