pokecrystal-board/INSTALL.md

79 lines
1.4 KiB
Markdown
Raw Normal View History

2016-01-31 15:42:32 -08:00
The source files are assembled into a rom using [**rgbds**](https://github.com/bentley/rgbds).
2016-01-31 15:36:18 -08:00
These instructions explain how to set up the tools required to build.
2016-03-16 14:57:03 -07:00
If you run into trouble, ask on irc ([**freenode#pret**](https://kiwiirc.com/client/irc.freenode.net/?#pret)).
2016-01-31 15:36:18 -08:00
2015-02-06 13:41:57 -08:00
# Linux
2016-01-31 15:36:18 -08:00
Python 2.7 is required.
```bash
sudo apt-get install make gcc bison git python
2015-10-25 00:23:33 -07:00
git clone https://github.com/bentley/rgbds
cd rgbds
sudo make install
cd ..
2014-11-12 07:30:37 -08:00
2015-10-25 00:23:33 -07:00
git clone --recursive https://github.com/pret/pokecrystal
cd pokecrystal
```
2015-02-06 13:41:57 -08:00
To build **pokecrystal.gbc**:
```bash
make
```
2012-06-02 13:27:24 -07:00
2015-10-25 00:26:12 -07:00
# Mac
2015-02-06 13:41:57 -08:00
In **Terminal**, run:
```bash
2015-10-25 00:26:12 -07:00
xcode-select --install
2012-06-02 13:27:24 -07:00
2015-10-25 00:23:33 -07:00
git clone https://github.com/bentley/rgbds
cd rgbds
sudo make install
cd ..
2012-06-02 13:27:24 -07:00
2015-10-25 00:23:33 -07:00
git clone --recursive https://github.com/pret/pokecrystal
cd pokecrystal
```
To build **pokecrystal.gbc**:
```bash
make
```
2015-02-06 13:41:57 -08:00
# Windows
2016-03-16 14:57:03 -07:00
To build on Windows, install [**Cygwin**](http://cygwin.com/install.html) with the default settings.
2012-06-02 13:27:24 -07:00
In the installer, select the following packages: `make` `git` `python` `gettext`
2016-01-31 15:27:32 -08:00
2015-02-06 13:41:57 -08:00
Then get the most recent version of [**rgbds**](https://github.com/bentley/rgbds/releases/).
2016-03-16 14:57:03 -07:00
Extract the archive and put `rgbasm.exe`, `rgblink.exe` and `rgbfix.exe` in `C:\cygwin64\usr\local\bin`.
2012-06-02 13:27:24 -07:00
2015-02-06 13:41:57 -08:00
In the **Cygwin terminal**:
2012-06-02 13:27:24 -07:00
```bash
2015-10-25 00:23:33 -07:00
git clone --recursive https://github.com/pret/pokecrystal
cd pokecrystal
```
To build **pokecrystal.gbc**:
```bash
make
```
## notes
- If `gettext` no longer exists, grab `libsasl2-3` `ca-certificates`.