31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
BUILD
|
|||
The build process has been revised yet again.
|
|||
1. Download StepMania from sourceforge.
|
|||
|
|
2. Install StepMania and the libraries using the included installer
|
||
|
|
3. Install ffmpeg by running the following commands from the terminal:
|
||
|
|
cvs -z9 -d:pserver:[email protected]:/cvsroot/ffmpeg login
|
||
|
|
cvs -z9 -d:pserver:[email protected]:/cvsroot/ffmpeg co ffmpeg
|
||
|
|
cd ffmpeg
|
||
|
|
./configure
|
||
|
|
make
|
||
|
|
make test
|
||
|
|
su
|
||
|
|
make install
|
||
|
|
install -d /usr/local/lib
|
||
|
|
install -m 644 libavcodec/libavcodec.a libavformat/libavformat.a /usr/local/lib
|
||
|
|
install -d /usr/local/include/ffmpeg
|
||
|
|
install -m 644 libavcodec/avcodec.h libavformat/avformat.h libavformat/avio.h \
|
||
|
|
libavcodec/common.h libavformat/rtp.h libavformat/rtsp.h \
|
||
|
|
libavformat/rtspcodes.h /usr/local/include/ffmpeg
|
||
|
|
exit
|
||
|
|
4. Cd to the PBProject directory enter: $ touch ver.cpp
|
||
5. Build StepMania by running `xcodebuild -target stepmania' in the PBProject
|
|||
|
|
directory.
|
||
|
|||
NOTE to self: I added the symlink:
|
|||
|
|
ln -s /System/Library/Frameworks/OpenGL/Versions/A/Libraries/ \
|
||
|
|
/Developer/SDKs/MacOSX10.2.7.sdk/System/Library/Frameworks/OpenGL/Versions/A/
|
||
|
|
because Apple was stupid and screwed up that framework.
|
||
|
|
|
||
Steve Checkoway
|
|||
|
|
[email protected]
|