8 lines
346 B
Bash
8 lines
346 B
Bash
check_architecture x86_64
|
|
installPath="${installPath:-${HOME}/.local/games}"
|
|
cache="${cache:-${XDG_CACHE_HOME:-$HOME/.cache}/linux-game-manager}"
|
|
download "https://samtupy.com/games/cm.tar.gz"
|
|
mkdir -p "${installPath}/Constant Motion"
|
|
tar -xzf "${cache}/cm.tar.gz" -C "${installPath}/Constant Motion"
|
|
chmod +x "${installPath}/Constant Motion/cm"
|