File tree Expand file tree Collapse file tree 2 files changed +49
-11
lines changed
Expand file tree Collapse file tree 2 files changed +49
-11
lines changed Original file line number Diff line number Diff line change 1+ # for every directory in this list, do:
2+ # env PREFIX=/staticscummvm ./build.sh
3+
14zlib
25bzip2
36
4- a52dec
5- faad2
6- freetype
7- fribidi
8- giflib
9- libjpeg-turbo
10- libmad
11- libmpeg2
12- libmikmod
137libpng
14- libvpx
8+ libjpeg-turbo
9+ giflib
1510
16- flac
11+ faad2
12+ libmad
1713libogg
1814libtheora
1915libvorbis
16+ flac
17+ libmikmod
18+ sonivox
19+
20+ mpeg2dec
21+ a52dec
22+ libmpcdec
23+ libvpx
24+
25+ fluidlite
26+ freetype
27+ fribidi
2028
2129libsdl1.2
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ set -eu
3+
4+ case " $( sw_vers -productVersion) " in
5+ 10.4.* |10.5.* )
6+ case " $( arch) " in
7+ ppc* )
8+ if ! port version > /dev/null 2>&1 ; then
9+ echo " MacPorts wasn't found in your current \$ PATH." >&2
10+ echo " Please install it from: https://www.macports.org/install.php" >&2
11+ exit 1
12+ fi
13+ ;;
14+ * )
15+ echo " This script can only be run on a ppc host" >&2
16+ exit 1
17+ esac
18+ ;;
19+ * )
20+ echo " This script can only be run on Mac OS X 10.4 or 10.5" >&2
21+ exit 1
22+ ;;
23+ esac
24+
25+ if [ ! -e /opt/macports-tff ]; then
26+ echo " /opt/macports-tff/ wasn't found. Please install the" >&2
27+ echo " \" Unofficial TenFourFox Development Toolkit\" and Xcode 2.5 (Tiger)" >&2
28+ echo " or Xcode 3.14 (Leopard) in order to build ScummVM." >&2
29+ exit 1
30+ fi
You can’t perform that action at this time.
0 commit comments