1. Install Mac OS X Developer tools. It's a free download, or just find Developer.pkg on the installation media (in a hidden directory).
2. Install Fink. The instructions are simple - http://fink.sourceforge.net/doc/bundled ... -first.php
3. Use Fink to install lots of stuff:
4. Fixup PATH to include Pspdev programs and prefer Fink programs. In my home directory I create a file called .bash_profile that looks like this:sudo fink -y install autogen autoconf2.5 automake1.8 libtool make svn-client wget sdl
5. Create a /usr/local/pspdev directory and remove security problems:#!/bin/bash
export PSPDEV="/usr/local/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PSPPATH="$PSPDEV/bin:$PSPDEV/psp/bin:$PSPSDK/bin"
export PATH="/sw/bin:$PATH:$PSPPATH"
6. Grab the psptoolchain-200xxxxxxx.tgz script from http://www.oopo.net/consoledev/ . Safari should extract it as psptoolchain/ on the desktop, so typesudo mkdir -p /usr/local/pspdev
sudo chmod a+rwx /usr/local/pspdev
If everything goes according to plan there will be programs in /usr/local/pspdev/bin/ and sample source in /usr/local/pspdev/psp/sdk/samples/.cd ~/Desktop/psptoolchain/
./toolchain.sh