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
#
# 2004-January-15 Jason Rohrer
# Added bash path.
# Fixed string comparison operator.
#
cd Transcend
chmod u+x ./configure
./configure
echo "Building portaudio..."
cd portaudio
chmod u+x ./configure
./configure
make
cd ..
echo "Building Transcend..."
cd game
make
cd ..
cd ..
cp Transcend/game/Transcend ./TranscendApp
cp -r Transcend/levels .
cp Transcend/doc/how_to_*.txt .
echo "Run TranscendApp to play."
|