Skip to content

Instantly share code, notes, and snippets.

@spcmd
Created May 22, 2016 12:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spcmd/c4d7a0a92ec9a1f1932f3029314133a4 to your computer and use it in GitHub Desktop.
Save spcmd/c4d7a0a92ec9a1f1932f3029314133a4 to your computer and use it in GitHub Desktop.
Run `Brutal Doom` on Arch Linux
#!/bin/sh
# Run `Brutal Doom` on Arch Linux
#
# Installation notes:
# - install gzdoom from the AUR: https://aur.archlinux.org/packages/gzdoom/
# - if the PGKBUILD has fmodex error, install fmodex first: https://aur.archlinux.org/packages/fmodex4.26.36/
# - download Brutal Doom from http://www.moddb.com/mods/brutal-doom and extract the content to a directory
# - set the `DIR` variable to the directory where Brutal Doom got extracted
# - run this file
DIR=~/Games/Brutal_Doom-Hell_on_Earth_Starter_Pack
gzdoom \
-iwad $DIR/freedoom.wad \
-file $DIR/brutalv20b.pk3 \
-file $DIR/hellonearthstarterpack.wad \
-file $DIR/ExtraTextures.wad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment