9 lines
323 B
Bash
9 lines
323 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
# chocolate-doom: faithful vanilla Doom port; freedoom: free game data (playable without IWADs)
|
|
log "Installing Chocolate Doom and Freedoom data..."
|
|
sudo pacman -S --noconfirm --needed chocolate-doom freedoom
|
|
log "Doom installed."
|