56da4eda75
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)
25 lines
611 B
Bash
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
|