tone down INSTALL steps
This commit is contained in:
+11
-27
@@ -37,47 +37,31 @@ You can then build pokeemerald using `make` in the MSYS environment provided wit
|
|||||||
|
|
||||||
Installing pokeemerald on a Mac requires macOS >= 10.12 (Sierra or higher).
|
Installing pokeemerald on a Mac requires macOS >= 10.12 (Sierra or higher).
|
||||||
|
|
||||||
To get pokeemerald up and running, run the following commands in Terminal:
|
Download a [devkitPRO pacman](https://github.com/devkitPro/pacman/releases/tag/v1.0.0)
|
||||||
|
|
||||||
|
Run the following commands in Terminal:
|
||||||
|
|
||||||
Make sure you have the right compilers.
|
|
||||||
|
|
||||||
```
|
```
|
||||||
xcode-select --install
|
xcode-select --install
|
||||||
```
|
|
||||||
|
|
||||||
Download a [devkitPRO pacman](https://github.com/devkitPro/pacman/releases/tag/v1.0.0) package (`.pkg`) and install using the native Installer.
|
|
||||||
|
|
||||||
This will install the devkitPRO package in `/opt/devkitpro`.
|
|
||||||
|
|
||||||
You must install devkitARM using
|
|
||||||
|
|
||||||
```
|
|
||||||
sudo dkp-pacman -S devkitARM
|
sudo dkp-pacman -S devkitARM
|
||||||
```
|
|
||||||
|
|
||||||
Then set environment variables
|
|
||||||
|
|
||||||
```
|
|
||||||
export DEVKITPRO=/opt/devkitpro
|
export DEVKITPRO=/opt/devkitpro
|
||||||
echo "export DEVKITPRO=$DEVKITPRO" >> ~/.bashrc
|
echo "export DEVKITPRO=$DEVKITPRO" >> ~/.bashrc
|
||||||
export DEVKITARM=$DEVKITPRO/devkitARM
|
export DEVKITARM=$DEVKITPRO/devkitARM
|
||||||
echo "export DEVKITARM=$DEVKITARM" >> ~/.bashrc
|
echo "export DEVKITARM=$DEVKITARM" >> ~/.bashrc
|
||||||
```
|
echo "if [ -f ~/.bashrc ]; then . ~/.bashrc; fi" >> ~/.bash_profile
|
||||||
|
|
||||||
Now download and install the game's compiler from <https://github.com/pret/agbcc>. You should download and unpack the `.zip` and move the folder to the same folder holding pokeemerald.
|
git clone https://github.com/pret/pokeemerald
|
||||||
|
git clone https://github.com/pret/agbcc
|
||||||
|
|
||||||
```
|
cd agbcc/
|
||||||
cd /PATH/TO/agbcc/
|
|
||||||
./build.sh
|
./build.sh
|
||||||
./install.sh /PATH/TO/pokeemerald
|
./install.sh ../pokeemerald
|
||||||
```
|
|
||||||
|
|
||||||
Build the necessary tools
|
cd ../pokeemerald
|
||||||
```
|
|
||||||
cd /PATH/TO/pokeemerald
|
|
||||||
./build_tools.sh
|
./build_tools.sh
|
||||||
```
|
```
|
||||||
And finally the ROM should be ready to build
|
|
||||||
```
|
And build the ROM with `make -j4`.
|
||||||
make
|
|
||||||
```
|
|
||||||
|
|||||||
Reference in New Issue
Block a user