Added game Monkey Spank.
This commit is contained in:
parent
2352ad132d
commit
7c3201a12c
@ -1,4 +1,4 @@
|
|||||||
Linux Game manager
|
## Linux Game manager
|
||||||
|
|
||||||
Installer and launcher for accessible to the blind games that run natively in Linux.
|
Installer and launcher for accessible to the blind games that run natively in Linux.
|
||||||
|
|
||||||
|
@ -282,6 +282,7 @@ gameList=(
|
|||||||
"Aliens"
|
"Aliens"
|
||||||
"E.X.O."
|
"E.X.O."
|
||||||
"Fantasy Story II"
|
"Fantasy Story II"
|
||||||
|
"Monkey Spank"
|
||||||
"Numnastics"
|
"Numnastics"
|
||||||
"S.E.A."
|
"S.E.A."
|
||||||
"soundStrider"
|
"soundStrider"
|
||||||
@ -323,13 +324,13 @@ args="${!command[*]}"
|
|||||||
args="${args//[[:space:]]/}"
|
args="${args//[[:space:]]/}"
|
||||||
while getopts "${args}" i ; do
|
while getopts "${args}" i ; do
|
||||||
case "$i" in
|
case "$i" in
|
||||||
C) clear_cache;;
|
C) clear_cache ;;
|
||||||
D) desktop_launcher;;
|
D) desktop_launcher ;;
|
||||||
h) help;;
|
h) help ;;
|
||||||
i) game_installer;;
|
i) game_installer ;;
|
||||||
L) license;;
|
L) license ;;
|
||||||
N) noCache="true";;
|
N) noCache="true" ;;
|
||||||
R) redownload="true";;
|
R) redownload="true" ;;
|
||||||
t)
|
t)
|
||||||
dialog --backtitle "Linux Game Manager" \
|
dialog --backtitle "Linux Game Manager" \
|
||||||
--infobox "There are currently ${#gameList[@]} games available." -1 -1
|
--infobox "There are currently ${#gameList[@]} games available." -1 -1
|
||||||
@ -357,6 +358,10 @@ case "${game}" in
|
|||||||
chmod +x "${installPath}/FS2_2.6_Linux/FS2.x86_64"
|
chmod +x "${installPath}/FS2_2.6_Linux/FS2.x86_64"
|
||||||
add_launcher "${installPath}/FS2_2.6_Linux/FS2.x86_64" "-ESpeakApplication=espeak-ng"
|
add_launcher "${installPath}/FS2_2.6_Linux/FS2.x86_64" "-ESpeakApplication=espeak-ng"
|
||||||
;;
|
;;
|
||||||
|
"Monkey Spank")
|
||||||
|
git -C "${installPath}" clone --recurse-submodules https://gitlab.com/stormdragon2976/monkeyspank.git
|
||||||
|
add_launcher "${installPath}/monkeyspank/monkeyspank"
|
||||||
|
;;
|
||||||
"Numnastics")
|
"Numnastics")
|
||||||
git -C "${installPath}" clone --recurse-submodules https://gitlab.com/stormdragon2976/numnastics.git
|
git -C "${installPath}" clone --recurse-submodules https://gitlab.com/stormdragon2976/numnastics.git
|
||||||
add_launcher "${installPath}/numnastics/numnastics"
|
add_launcher "${installPath}/numnastics/numnastics"
|
||||||
|
Loading…
Reference in New Issue
Block a user