12 lines
480 B
Bash
12 lines
480 B
Bash
#!/bin/bash
|
|
# Exit immediately on error, treat unset variables as errors, propagate pipe failures.
|
|
set -euo pipefail
|
|
# Load shared log/warn/skip helpers from the installer library.
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing OpenArena..."
|
|
# OpenArena is a free, open-source FPS based on the Quake III Arena engine,
|
|
# available directly from the official Arch repositories.
|
|
sudo pacman -S --noconfirm --needed openarena
|
|
log "OpenArena installed."
|