1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#!/bin/bash
#
# Modification History
#
# 2006-July-13 Jason Rohrer
# Copied from Transcend.
#
# 2006-November-26 Jason Rohrer
# Added tool-tip stuff.
#
cd game2
chmod u+x ./configure
./configure
echo "Building Cultivation..."
cd gameSource
make
cd ..
cd ..
cp game2/gameSource/Cultivation ./Cultivation
cp game2/documentation/how_to_*.txt .
cp game2/gameSource/features.txt .
cp game2/gameSource/language.txt .
cp game2/gameSource/font.tga .
mkdir ./languages
cp game2/gameSource/languages/*.txt ./languages
echo "Run Cultivation to play."
|