- 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 21:19:30 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
[ "$2" != "POST-INSTALL" ] && exit 0
|
|
|
|
|
2006-12-01 03:57:31 +01:00
|
|
|
scripts_file=$PKG_PREFIX/lib/linux-savage/scripts.log
|
|
|
|
startup_file=$PKG_PREFIX/lib/linux-savage/game/startup.cfg
|
- 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 21:19:30 +02:00
|
|
|
|
|
|
|
if ! [ -e $scripts_file ]; then
|
|
|
|
touch $scripts_file
|
|
|
|
chown root:wheel $scripts_file 2>/dev/null
|
|
|
|
chmod 666 $scripts_file
|
|
|
|
fi
|
|
|
|
|
2007-09-09 01:53:17 +02:00
|
|
|
if ! [ -e $startup_file ]; then
|
|
|
|
touch $startup_file
|
|
|
|
chown root:wheel $startup_file 2>/dev/null
|
|
|
|
chmod 666 $startup_file
|
|
|
|
fi
|