#!/bin/sh
#
# Shell script to install the angels patch under Linux

echo ""
echo "This patch gives your DOOM! seargants wings..."
echo ""
echo "This procedure will take 2.5 megabytes of diskspace for DOOM1"
echo "                     or approximately 4.5 megabytes for DOOM2."
echo "Press <Return> to continue or Ctrl-C to abort..."
read newline

# Uncomment the next line if you want to save space by modifying the
# original DOOM! installation.
#./deusf -doom .. -merge angels.pwd
# If you want to remove the patch from the original DOOM! installation,
# run: ./deusf -doom .. -res ../doom.wad   (for DOOM1)
# or   ./deusf -doom .. -res ../doom2.wad  (for DOOM2)

# Comment the next line if you want to save space by modifying the
# original DOOM! installation.
./deusf -doom .. -add angels.pwd angels.wad

echo ""
echo "Your seargants have been replaced by badass angels!!"
echo ""
echo "To play this patch, run doom with the arguments: -file angels/angel.wad"
echo ""
echo "You can remove angel.wad any time, if you need more diskspace."
echo "If you ever want to recreate it, re-run this batchfile."
echo ""
echo "Enjoy!"
echo "      -Sam Lantinga	(slouken@cs.ucdavis.edu)"
echo ""
