Linux by Loki Software, is a weird beast. Using one of Quake's 3D engines with a lot of extras (pole-vaulting, mana systems, magical weapons and defense shields), the game excels in pleasing the eyes and ears. This is the free demo version - a full version is available from Loki Games at http://www.lokigames.com/products/heretic2/
10 lines
265 B
Bash
10 lines
265 B
Bash
#!/bin/sh -e
|
|
# $NetBSD: wrapper.sh,v 1.1.1.1 2000/10/16 12:24:58 abs Exp $
|
|
# Simple wrapper for lokigames @@BINNAME@@
|
|
|
|
# linux binary calls mkdir for this with a trailing '/'
|
|
if [ ! -d $HOME/.loki ];then
|
|
mkdir $HOME/.loki
|
|
fi
|
|
cd @@LIBDIR@@
|
|
exec ./@@BINNAME@@ $@
|