pokecrystal-board/INSTALL.md

73 lines
1.3 KiB
Markdown
Raw Normal View History

2015-02-06 13:41:57 -08:00
# Linux
Note that this requires python2.7 for the moment.
```bash
sudo apt-get install make gcc bison git python python-pip
pip install pypng
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
sudo easy_install pypng
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
To build on Windows, use [**Cygwin**](http://cygwin.com/install.html). Use the default settings.
2012-06-02 13:27:24 -07:00
2016-01-31 15:27:32 -08:00
In the installer, select the following packages: `make` `git` `python` `python-setuptools` `gcc-core` `libsasl2-3` `ca-certificates`
2015-02-06 13:41:57 -08:00
Then get the most recent version of [**rgbds**](https://github.com/bentley/rgbds/releases/).
Extract the archive and put `rgbasm.exe`, `rgblink.exe` and `rgbfix.exe` in `C:\cygwin\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
lynx -source bootstrap.pypa.io/get-pip.py | python
pip install pypng
2015-10-25 00:23:33 -07:00
git clone --recursive https://github.com/pret/pokecrystal
cd pokecrystal
```
To build **pokecrystal.gbc**:
```bash
make
```