File: runToBuild

package info (click to toggle)
transcend 0.3.dfsg1-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,816 kB
  • ctags: 2,912
  • sloc: cpp: 26,890; ansic: 693; sh: 210; makefile: 131; perl: 67
file content (42 lines) | stat: -rwxr-xr-x 467 bytes parent folder | download | duplicates (12)
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."