freebsd-ports/games/linux-savage/pkg-install
Jose Alonso Cardenas Marquez 56da4eda75 - New port: games/linux-savage
Choose to be a commander and you will play an in-depth RTS managing the
stronghold, or choose to be a warrior and you will play an intense game of
first person combat. With the creation of a new game play genre, RTSS (Real
Time Strategy Shooter), Savage expertly redefines the first-person shooter
and real-time strategy genres by combining elements of both into one cohesive
experience.

As the commander in RTS mode, you will tackle resource management, develop a
robust tech tree, plan your assault and lead real human players into battle.
As a warrior in action mode, you will master many unique weapons, powerful
units, and siege vehicles to fight a fast paced battle.

WWW:    http://www.s2games.com/savage/

Approved by:	garga (mentor, implicit)
2006-09-08 19:19:30 +00:00

25 lines
611 B
Bash

#!/bin/sh
[ "$2" != "POST-INSTALL" ] && exit 0
scripts_file=$PKG_PREFIX/scripts.log
laspatch_file=$PKG_PREFIX/updater/lastpatch.txt
patchindex_file=$PKG_PREFIX/updater/patchindex.txt
if ! [ -e $scripts_file ]; then
touch $scripts_file
chown root:wheel $scripts_file 2>/dev/null
chmod 666 $scripts_file
fi
if ! [ -e $laspatch_file ]; then
echo "savage20031022a-patch.tar.gz" > $laspatch_file
chown root:wheel $laspatch_file 2>/dev/null
chmod 666 $laspatch_file
fi
if ! [ -e $patchindex_file ]; then
touch $patchindex_file
chown root:wheel $patchindex_file 2>/dev/null
chmod 666 $patchindex_file
fi